/* --- recover.css - MODERN GLASSMORPHISM --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* SIFIRLAMA */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

:root {
    --acc-bg0: #1e3a5f;
    --acc-bg1: #0a1929;
}

body {
    background: radial-gradient(circle at 50% 20%, var(--acc-bg0) 0%, var(--acc-bg1) 100%);
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(at 20% 80%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(124, 58, 237, 0.15) 0px, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.register-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    padding: 20px;
    box-sizing: border-box;
}

.glass-card {
    width: 100%;
    max-width: 450px; 
    margin: auto; 
    background: #111c2e; 
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px; 
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* HEADER & LOGO */
.auth-header {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 24px;
}

.auth-header > a {
    position: static !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto 12px auto !important;
}

.auth-logo {
    position: static !important;
    display: block !important;
    margin: 0 auto !important;
    height: 46px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
}

.auth-title { font-size: 24px; font-weight: 800; color: #fff; margin: 0; letter-spacing: -0.5px; }
.auth-desc { font-size: 14px; color: #94a3b8; margin-top: 6px; }

/* INPUT ALANLARI */
.input-group { 
    margin-bottom: 12px; 
    width: 100%; 
}

.auth-input {
    width: 100%;
    background: #0f172a; 
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    transition: 0.2s ease;
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: #3b82f6;
    background: #0b1120;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* BUTON */
.btn-submit {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4); }

/* FOOTER & ALERTS */
.auth-footer { text-align: center; font-size: 14px; color: #94a3b8; }
.auth-footer a { color: #fff; font-weight: 600; text-decoration: none; transition: .2s; }
.auth-footer a:hover { color: #60a5fa; }

.alert-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #93c5fd;
    display: flex; gap: 10px; align-items: center;
}

.error-box {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #fca5a5;
}

/* RECAPTCHA KUTUSU (Mobil Taşmaları Önlemek İçin) */
.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 8px;
}

/* MOBİL GÖRÜNÜM (Kompakt) */
@media (max-width: 480px) {
    .register-wrapper { padding: 15px 10px; }
    .glass-card { padding: 24px 18px; border-radius: 16px; }
    
    .auth-header { margin-bottom: 18px; }
    .auth-logo { height: 32px !important; max-width: 140px !important; margin-bottom: 10px !important; }
    .auth-title { font-size: 22px; }
    .auth-desc { font-size: 13px; margin-top: 4px; }

    .input-group { margin-bottom: 10px; }
    .auth-input { padding: 12px 14px; font-size: 13px; }

    .btn-submit { padding: 13px; font-size: 14px; margin-top: 0; margin-bottom: 16px; }
    .alert-box { padding: 12px; font-size: 12px; margin-bottom: 16px; }
    .auth-footer { font-size: 13px; }
}