/* ===== HERO (container mare) ===== */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 0;
}

/* ===== HERO BOX ===== */

.hero-box {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
    padding: 10px 20px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

/* ===== BACK BUTTON (ALINIERE FINALĂ PERFECTĂ) ===== */

.back-link {
    position: absolute;
    top: 10px;     /* 🔥 coborât perfect */
    left: 26px;

    text-decoration: none;
    color: #8A7F73;

    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;

    opacity: 0.6;
    transition: 0.2s;
}

.back-link:hover {
    opacity: 1;
}

/* ===== TITLU ===== */

.hero-title {
    margin-top: 10px;
    margin-bottom: 20px;
}

/* ===== ICON ===== */

.icon {
    margin-bottom: 6px;
}

.icon svg {
    width: 28px;
    height: 28px;

    stroke: #8A7F73;
    opacity: 0.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== FORM ===== */

.form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* ===== INPUTS ===== */

.form input {
    width: 85%;
    padding: 11px 14px;

    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.08);

    background: rgba(255,255,255,0.2);

    font-family: 'Cormorant Garamond', serif;
    font-style: italic;

    text-align: left;
    padding-left: 18px;

    color: #8A7F73;

    outline: none;
    transition: 0.2s;
}

/* ===== INPUT ERROR ===== */

.form input.error-input {
    border: 1px solid rgba(138, 127, 115, 0.6);
    background: rgba(255,255,255,0.3);
}

/* ===== ERROR TEXT ===== */

.error {
    width: 85%;
    text-align: left;

    font-family: 'Cormorant Garamond', serif;
    font-style: italic;

    font-size: 13px;
    color: #8A7F73;

    margin-top: -4px;
    margin-bottom: 6px;
}

/* ===== ERROR BOX ===== */

.error-box {
    width: 85%;
    margin-bottom: 12px;

    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;

    color: #8A7F73;

    text-align: center;

    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 8px 10px;

    border: 1px solid rgba(0,0,0,0.05);
}

/* ===== BUTTON ===== */

.btn {
    width: 85%;
    padding: 12px;

    border-radius: 20px;
    border: none;

    background: rgba(255,255,255,0.2);

    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 16px;

    color: #8A7F73;

    cursor: pointer;

    text-decoration: none;
    box-shadow: none;

    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ===== SELECT TIP ===== */

.account-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

/* ===== CARDURI ===== */

.account-card {
    width: 85%;
    background: rgba(255,255,255,0.2);

    border-radius: 20px;
    padding: 18px;

    text-align: center;
    cursor: pointer;

    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.25s ease;
}

.account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ===== TEXT ===== */

.account-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 17px;
    color: #8A7F73;
    margin: 6px 0;
}

.account-card p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 14px;
    color: #8A7F73;
    opacity: 0.7;
    margin-top: 4px;
}

/* ===== ACTIVE ===== */

.account-card.active {
    background: rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}