/* DOSYA: /public_html/assets/css/Auth/style.css */
/* GREV: Giri, Kayt ve ifre Sfrlama Sayfalar */

.auth-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 85vh;
    padding: 20px;
    background: transparent; /* Arka plan body'den gelir */
}

.auth-box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

/* Sol Taraf (Sidebar) */
.auth-sidebar {
    flex: 1;
    min-width: 300px;
    background: #000080; /* Lacivert */
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.auth-sidebar h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.auth-sidebar p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 30px;
}

.auth-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.auth-features li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-features li i {
    color: #00d2ff; /* Neon Mavi */
}

/* Sa Taraf (Form) */
.auth-form-area {
    flex: 1.2;
    min-width: 350px;
    padding: 50px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-header {
    margin-bottom: 30px;
    text-align: center;
}

.auth-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.auth-header span {
    color: #777;
    font-size: 0.9rem;
}

/* Form Elemanlar */
.form-floating {
    position: relative;
    margin-bottom: 20px;
}

.form-floating input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
}

.form-floating input:focus {
    border-color: #000080;
}

.form-floating i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: 0.3s;
}

.form-floating input:focus + i {
    color: #000080;
}

.btn-3d {
    background: #000080;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 5px 0 #000050;
    text-align: center;
    display: block;
    width: 100%;
}

.btn-3d:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 #000050;
}

.social-login-gap {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-size: 1.2rem;
    transition: 0.3s;
    cursor: pointer;
}

.social-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .auth-box {
        flex-direction: column;
    }
    .auth-sidebar {
        display: none; /* Mobilde sidebar gizle */
    }
    .auth-form-area {
        padding: 30px;
    }
}