/* JURISAY/assets/css/auth.css */
/* Ortak Giriş/Kayıt/Doğrulama Sayfası Stilleri */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem; /* Daha fazla dikey boşluk */
    min-height: calc(100vh - 150px); /* Footer/Header payı */
    width: 100%;
}
.auth-card {
    max-width: 480px; /* Biraz daha dar */
    width: 100%;
    padding: 2.5rem; /* İç boşluk artırıldı */
}
.auth-header {
    text-align: center;
    margin-bottom: 2.5rem; /* Başlık altı boşluk artırıldı */
}
.auth-logo {
    height: 45px; /* Logo boyutu küçültüldü */
    margin-bottom: 1.5rem;
}
.auth-header h2 {
    margin-bottom: 0.75rem;
    font-size: 1.8rem; /* Başlık boyutu ayarlandı */
}
.auth-header p {
    color: var(--text-secondary);
    font-size: 1rem; /* Açıklama metni ayarlandı */
}

/* Zorunlu alan işareti */
.required {
    color: var(--error-color);
    margin-left: 2px;
}

/* Hata mesajı stili */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border: 1px solid transparent;
}
.alert.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--error-color);
    border-color: rgba(239, 68, 68, 0.2);
}
.alert.success { /* Başarı mesajı için */
     background-color: rgba(16, 185, 129, 0.1);
     color: var(--success-color);
     border-color: rgba(16, 185, 129, 0.2);
}


.form-row {
    display: flex;
    gap: 1.5rem; /* Alanlar arası boşluk */
}
.form-row .form-group {
    flex: 1;
}
#password-strength-container {
    margin-top: 8px;
    width: 100%;
    background: #2a3447; /* Tema değişkeni kullanılabilir */
    border-radius: 4px;
    height: 6px; /* Biraz inceltildi */
    overflow: hidden;
}
#password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s, background-color 0.3s;
}
#password-strength-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 4px;
    float: right;
    height: 1.2em; /* Metin için yer ayır */
}
.form-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
}
.auth-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.auth-footer a {
    color: var(--primary-color);
    font-weight: 500;
}
.button-primary { /* Ana buton stili vurgusu */
    font-weight: 600;
}