body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: linear-gradient(120deg,#2a5298,gray,#2a5298);
    background-size: 300% 300%;
    animation: bgMove 10s infinite alternate ease-in-out;
    font-family: "Poppins", Arial, sans-serif;

}

/* Arka plan animasyonu */
@keyframes bgMove {
    from { background-position: 0% 50%; }
    to   { background-position: 100% 50%; }
}

.wrapper1{
    width:100%;
    height:100vh;
    display:flex;
    flex-direction:column;
}

.content1{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:80px;
}

/* SOL GÖRSEL ALANI */
.left{
    width:420px;
    position:relative;
    display:flex;
    justify-content:center;
}

.left img{
    width:400px;
    border-radius:35px;

}

/* SAĞ FORM PANEL */
.right1{
    width:360px;
}

.logo1{
    font-size:44px;
    font-family:  "Segoe Script", cursive;
    text-align:center;
    margin-bottom:25px;
}

.form-box1{

    padding:25px 25px 35px;
}

input{
    width:90%;
    padding:12px;
    margin-top:10px;
    border:1px solid #292929;

}

button{
    width:98%;
    padding:12px;
    margin-top:15px;

    border:none;
    cursor:pointer;
    background:#4c6ef5;
    color:white;
    font-weight:bold;
}

/* YA DA bölümü */
.or {
    text-align: center;
    font-weight: 500;
    color: #444;
    margin: 20px 0;

    position: relative;
}

.or::before,
.or::after {
    content: "";
    height: 1px;
    width: 40%;
    position: absolute;
    top: 50%;
}

.or::before {
    left: 0;
}

.or::after {
    right: 0;
}

/* Facebook ile giriş */
.fb {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    text-align: center;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    margin: 10px 0;
    transition: .3s;
    cursor: pointer;
}

.fb:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,.25);
}

/* Şifre unutma */
.forgot {
    text-align: center;
    margin: 15px 0;
    color: #1e3c72;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

.forgot:hover {
    color: #ff8c00;
}

/* Alt kayıt alanı */
.register {
    text-align: center;
    background: #ffffff;
    padding: 18px;
    border-radius: 12px;
    margin-top: 18px;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,.1);
}

.register a {
    color: #ff8c00;
    font-weight: 700;
    text-decoration: none;
}

.register a:hover {
    text-decoration: underline;
}

/* ALT FOOTER */

select{
    background:#0f0f10;
    color:#b1b1b1;
    border:none;
}
.footer{
    padding:2px;
    text-align:center;

	position:fixed;
	bottom:5px;
	width:100%;
	height:20px;
	
}
.logo-area {
    display: block;
	margin-left:100px;
    gap: 8px;
}

.logo-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff; /* tema rengine göre değiştir */
	font-family:  "Segoe Script", cursive;
	text-decoration:none;
}

.logo-img {
    height: 260px;   /* logonun görünür alanı */
    width: 320px;
}
/* RESPONSIVE */
@media(max-width:980px){
    .left{
        display:none;
    }
    .content{
        gap:0;
    }
}
