/* public/assets/css/auth.css */
/* Login / Auth sayfası stilleri */

body.usip-auth-bg {
    min-height: 100vh;
    background-image: url('/assets/img/AsuResim.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Kart üzerine hafif sis efekti */
body.usip-auth-bg .card {
    backdrop-filter: blur(2px);
    background-color: rgba(255, 255, 255, 0.97) !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Overlay katmanı - fotoğrafın üstüne çok hafif koyu film */
body.usip-auth-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 50, 0.45);
    z-index: 0;
    pointer-events: none;
}

body.usip-auth-bg > * {
    position: relative;
    z-index: 1;
}

input:focus,
select:focus,
textarea:focus {
    box-shadow: none !important;
    border-color: #0d6efd !important;
}
