/* Authentication Styles - Tech Edu Portal-Anek */

.auth-body { 
    background: #f4f7f6; 
    height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.auth-card { 
    border: none; 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
    max-width: 1000px; 
    width: 100%; 
    display: flex; 
    background: #fff; 
}

.auth-side-img { 
    flex: 1.2; 
    position: relative; 
}

.auth-side-img::after { 
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(56, 141, 168, 0.7); 
}

.auth-form-side { 
    flex: 1; 
    padding: 50px; 
}

.btn-auth { 
    background: #388da8; 
    color: white; 
    border-radius: 10px; 
    padding: 12px; 
    font-weight: 600; 
    border: none; 
    transition: 0.3s; 
}

.btn-auth:hover { 
    background: #2c7186; 
    color: white; 
    transform: translateY(-2px); 
}

.auth-form-side .form-control { 
    border-radius: 10px; 
    padding: 12px; 
    border: 1px solid #eee; 
    background: #f9f9f9; 
}

.auth-form-side .form-control:focus { 
    box-shadow: none; 
    border-color: #388da8; 
    background: #fff; 
}

@media (max-width: 768px) { 
    .auth-side-img { display: none !important; } 
    .auth-body { height: auto; padding: 40px 15px; }
    .auth-form-side { padding: 30px 20px; }
}
