/* ======================================================= */
/* YENİ ve BENZERSİZ GİRİŞ/KAYIT MODALI STİLLERİ (AUTH)   */
/* ======================================================= */

/* Modal arkaplanı ve içerik kutusu için genel stiller */
/* Not: Bunlar lrf- stilleriyle aynı olabilir, ancak çakışmayı önlemek için ayrı tutuyoruz */
.auth-modal-arkaplan { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); justify-content: center; align-items: center; z-index: 5000; padding: 20px; }
.auth-modal-arkaplan.aktif { display: flex; }
.auth-modal-icerik { background-color: white; padding: 30px 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); width: 100%; max-width: 480px; position: relative; }
.auth-modal-kapat { position: absolute; top: 10px; right: 15px; background: none; border: none; font-size: 2.2rem; color: #b0b0b0; cursor: pointer; line-height: 1; padding: 5px; }
.auth-modal-kapat:hover { color: #333; }

/* Sekme (Tab) Stilleri */
.auth-sekme-cubugu {
    display: flex;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 25px;
}
.auth-sekme-btn {
    flex: 1;
    padding: 12px;
    border: none;
    background-color: transparent;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}
.auth-sekme-btn.aktif {
    background-color: white;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Sekme içerikleri (formlar) */
.auth-sekme-icerik { display: none; }
.auth-sekme-icerik.aktif { display: block; }

/* Form Stilleri */
.auth-form-baslik { text-align: center; margin-bottom: 25px; }
.auth-form-baslik h3 { font-size: 1.8rem; color: #333; margin-bottom: 8px; }
.auth-form-baslik p { color: #777; font-size: 1rem; }
.auth-form { display: flex; flex-direction: column; gap: 20px; }
.auth-form-sira { display: flex; gap: 15px; }
.auth-form-grup { flex: 1; display: flex; flex-direction: column; }
.auth-form-grup label { margin-bottom: 8px; font-weight: 500; color: #555; }
.auth-form-grup input { width: 100%; padding: 12px; border: 1px solid #e5e7eb; border-radius: 8px; font-size: 1rem; }
.auth-gonder-btn { background-color: #f689ad; color: white; border: none; padding: 14px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; }
.auth-uyari { display: none; /* JS ile 'hidden' kaldırılacak */ }

/* ======================================================= */
/* YENİ ve BENZERSİZ OTP MODALI STİLLERİ (OTP)          */
/* ======================================================= */
.otp-modal-arkaplan { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); justify-content: center; align-items: center; z-index: 6000; padding: 20px; }
.otp-modal-arkaplan.aktif { display: flex; }
.otp-modal-icerik { background-color: white; padding: 30px 40px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); width: 100%; max-width: 500px; text-align: center; }
.otp-modal-kapat { position: absolute; top: 10px; right: 15px; background: none; border: none; font-size: 2.2rem; color: #b0b0b0; cursor: pointer; }
.otp-form-baslik { margin-bottom: 25px; }
.otp-form-baslik h3 { font-size: 1.8rem; margin-bottom: 8px; }
.otp-form-baslik p { color: #777; }
.otp-girdi-kutulari { display: flex; justify-content: center; gap: 10px; margin: 30px 0; }
.otp-girdi-kutulari input { width: 45px; height: 55px; text-align: center; font-size: 1.8rem; font-weight: 600; border: 1px solid #ddd; border-radius: 8px; }
.otp-girdi-kutulari input:focus { outline: 2px solid #f689ad; }
.otp-gonder-btn { width: 100%; background-color: #f689ad; color: white; border: none; padding: 14px; border-radius: 8px; font-size: 1rem; font-weight: 600; cursor: pointer; }
.otp-gonder-btn:disabled { background-color: #fbcfe8; cursor: not-allowed; }
.otp-uyari { display: none; /* JS ile 'hidden' kaldırılacak */ }