:root {
    --lacivert: #1b2f77;
    --turuncu: #ff6b35;
    --acik-gri: #f8f9fa;
    --sinir: #e0e4ef;
    --yazi: #2d2d2d;
    --yazi-acik: #6c757d;
    --beyaz: #ffffff;
}

.account-page {
    /* background: var(--acik-gri); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px;
}

/* İki panelli sayfa (Giriş) */
.account-container-multi {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 960px;
    align-items: stretch;
}

/* Tek panelli sayfalar (Üye Ol, Şifremi Unuttum) için sarmalayıcı */
.account-box-single {
    width: 100%;
    max-width: 480px;
}

.account-box {
    background: var(--beyaz);
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(27, 47, 119, 0.08);
    border: 1px solid var(--sinir);
    display: flex;
    flex-direction: column;
}

.account-header {
    text-align: center;
    margin-bottom: 35px;
}

.account-header h2 {
    font-size: 26px;
    color: var(--lacivert);
    font-weight: 800;
    margin-bottom: 10px;
}

.account-header p {
    color: var(--yazi-acik);
    font-size: 15px;
}

/* ── Giriş Formu ── */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--lacivert);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1.5px solid var(--sinir);
    border-radius: 12px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s;
    background: #fdfdfd;
    display: block;
}

.form-control:focus {
    border-color: var(--lacivert);
    box-shadow: 0 0 0 4px rgba(27, 47, 119, 0.05);
}

.btn-account {
    width: 100%;
    padding: 14px;
    background: var(--lacivert);
    color: var(--beyaz);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-account:hover {
    background: var(--turuncu);
    transform: translateY(-2px);
}

/* ── Seçenekler Paneli ── */
.selection-side {
    justify-content: space-around;
    background: linear-gradient(135deg, #ffffff 0%, #f9faff 100%);
}

.selection-item {
    text-align: center;
    padding: 15px 10px;
    width: 100%;
    box-sizing: border-box;
}

.selection-icon {
    font-size: 30px;
    color: var(--turuncu);
    margin-bottom: 15px;
}

.selection-item h3 {
    font-size: 18px;
    color: var(--lacivert);
    font-weight: 800;
    margin-bottom: 10px;
}

.selection-item p {
    font-size: 13px;
    color: var(--yazi-acik);
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-selection-outline {
    display: inline-block;
    padding: 10px 30px;
    border: 2px solid var(--lacivert);
    color: var(--lacivert);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-selection-outline:hover {
    background: var(--lacivert);
    color: #fff;
}

.btn-selection-guest {
    display: block;
    padding: 12px 20px;
    background: #f1f3f9;
    color: var(--lacivert);
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.btn-selection-guest:hover {
    background: var(--turuncu);
    color: #fff;
    text-decoration: none;
}

.selection-divider {
    position: relative;
    text-align: center;
    margin: 30px 0;
}

.selection-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: var(--sinir);
}

.selection-divider span {
    position: relative;
    background: #fff;
    padding: 0 15px;
    color: var(--yazi-acik);
    font-size: 12px;
    font-weight: 700;
}

.forgot-password {
    text-align: right;
    margin-bottom: 15px;
}

.forgot-password a {
    font-size: 12px;
    color: var(--yazi-acik);
    text-decoration: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--yazi-acik);
}

@media (max-width: 850px) {
    .account-container-multi {
        flex-direction: column;
    }
}
@media (max-width: 576px) {
    .account-page {
        padding: 260px 20px 80px;
    }
}