﻿/* ==========================================
   ACCOUNT PAGE – LIGHT BOTANICAL LUXURY
========================================== */

/* ===== SECTION BACKGROUND ===== */

.account-section {
    padding: 90px 20px;
    background: linear-gradient(
        135deg,
        #f6faf7,
        #eaf4ee,
        #fdfbf6
    );
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== WRAPPER ===== */

.account-wrapper {
    width: 100%;
    max-width: 500px;
}

/* ===== GLASS CONTAINER ===== */

.account-glass-box {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 50px 40px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
}

.account-glass-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.18);
}

/* ===== HEADER ===== */

.account-header {
    text-align: center;
    margin-bottom: 30px;
}

.account-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(to right, #c8a83c, #f1d98b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.account-header p {
    font-size: 13px;
    color: #6c7a74;
    margin-top: 8px;
}

/* ===== TABS ===== */

.account-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.tab-btn {
    padding: 9px 22px;
    border-radius: 30px;
    border: 1px solid #d4af37;
    background: transparent;
    font-size: 13px;
    font-weight: 500;
    color: #a88a2a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #d4af37;
    color: #fff;
}

.active-tab {
    background: linear-gradient(135deg, #d4af37, #e8c76a);
    color: #fff;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

/* ===== PANELS ===== */

.account-panel {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== INPUT GROUP ===== */

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #d4af37;
    font-size: 14px;
}

/* ===== INPUT FIELDS ===== */

.form-input {
    width: 100%;
    padding: 13px 15px 13px 45px;
    border-radius: 30px;
    border: 1px solid #e4e4e4;
    background: #ffffff;
    font-size: 13px;
    color: #333;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #d4af37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
    outline: none;
}

/* ===== BUTTON ===== */

.luxury-btn {
    width: 100%;
    padding: 13px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #d4af37, #f0d27a);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
    letter-spacing: 0.5px;
}

.luxury-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ===== MESSAGES ===== */

.form-msg {
    display: block;
    text-align: center;
    font-size: 12px;
    margin-top: 12px;
    color: #b33939;
}

.main-msg {
    font-weight: 600;
    margin-bottom: 10px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {

    .account-section {
        padding: 60px 15px;
    }

    .account-glass-box {
        padding: 35px 25px;
    }

    .account-header h2 {
        font-size: 22px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

}
