/* ===== BACK LINK ===== */

.back-link {
    position: absolute;
    top: 16px;
    left: 18px;

    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;

    color: #8A7F73;

    text-decoration: none;
    opacity: 0.6;

    z-index: 10; /* 🔥 evită suprapuneri */
}

.back-link:hover {
    opacity: 1;
}

/* ===== BUTTON GROUP ===== */

.btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: center;
}

/* ===== BUTTON ===== */

.btn {
    width: 80%;
    max-width: 260px; /* 🔥 control vizual */

    padding: 12px;

    border-radius: 30px;
    border: 2px solid #8a8a8a;

    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 700;
    font-size: 18px;

    color: #8a8a8a;

    background: rgba(230,230,230,0.4);

    text-decoration: none;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: 0.2s ease;
}

.btn:hover {
    background: rgba(200,200,200,0.5);
    transform: translateY(-2px); /* 🔥 micro-interacțiune */
}

/* ===== CARD ===== */

.account-card {
    width: 85%;
    max-width: 280px; /* 🔥 aliniere cu butoanele */

    background: rgba(255,255,255,0.2);

    border-radius: 20px;
    padding: 18px;

    cursor: pointer;

    transition: 0.25s ease;
}

.account-card:hover {
    transform: translateY(-2px);
}