body {
    background: #f4f6f8;
    font-family: Arial, sans-serif;
}
/* =========================
   LOGO HEADER FIXO
========================= */
.container-logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;

    display: flex;
    justify-content: center;

    padding: 10px 0;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);

    z-index: 10;
}

.logo {
    width: 90px;
    height: auto;
}

/* efeito leve moderno */
.container-logo img:hover {
    transform: scale(1.05);
}

/* responsividade */
@media (min-width: 768px) {
    .container-logo img {
        width: 65px;
        height: 65px;
    }
}

@media (min-width: 1024px) {
    .container-logo img {
        width: 70px;
        height: 70px;
    }
}
.auth-wrapper {
    position: relative;
    top: 120px;
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 90%;
    max-width: 420px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-card h2 {
    text-align: center;
    color: #333;
}

.subtitle {
    text-align: center;
    font-size: 0.85em;
    color: #777;
}

.message {
    display: none;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85em;
    text-align: center;
}

.input-group {
    position: relative;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.input-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 0.8em;
    color: #999;
    transition: 0.2s;
}

.input-group input:focus + label,
.input-group input:valid + label {
    top: -10px;
    background: white;
    padding: 0 5px;
    font-size: 0.7em;
    color: #e69500;
}

.btn {
    background: #e69500;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #cc8400;
}

/* TOAST STATES */
.message.success {
    display: block;
    background: #d4f8e8;
    color: #0f5132;
}

.message.error {
    display: block;
    background: #ffe1e1;
    color: #842029;
}

/* ======================================
RECOVER OPTIONS
====================================== */

.recover-options{

    display: flex;

    gap: 10px;

    margin-top: 10px;
}

/* ======================================
OPTION BUTTON
====================================== */

.recover-option{

    flex: 1;

    border: none;

    padding: 14px;

    border-radius: 14px;

    cursor: pointer;

    font-size: .85rem;

    font-weight: 700;

    transition: .3s ease;

    background: #f3f4f6;

    color: #555;
}

.recover-option:hover{

    transform: translateY(-2px);
}

/* ACTIVE */

.recover-option.active{

    color: white;

    background:
        linear-gradient(
            135deg,
            #ff9f1a,
            #ff7a00
        );

    box-shadow:
        0 10px 25px rgba(255,122,0,.18);
}

/* ======================================
METHOD BOX
====================================== */

.method-box{

    display: none;

    animation: fadeRecover .35s ease;
}

.method-box.active{

    display: block;
}

/* ======================================
PASSWORD ID ALERT
====================================== */

.password-id-alert{

    margin-top: 10px;

    padding: 14px;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            rgba(255,122,0,.08),
            rgba(255,180,71,.08)
        );

    color: #b96b00;

    font-size: .82rem;

    line-height: 1.6;

    border: 1px solid rgba(255,122,0,.08);
}

/* ======================================
INPUT PREMIUM
====================================== */

.input-group input{

    transition: .25s ease;
}

.input-group input:focus{

    border-color: #ff9f1a;

    box-shadow:
        0 0 0 4px rgba(255,122,0,.10);
}

/* ======================================
BUTTON PREMIUM
====================================== */

.btn{

    margin-top: 5px;

    background:
        linear-gradient(
            135deg,
            #ff9f1a,
            #ff7a00
        );

    font-weight: 700;

    box-shadow:
        0 10px 25px rgba(255,122,0,.18);
}

.btn:hover{

    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(255,122,0,.25);
}

/* ======================================
ANIMATION
====================================== */

@keyframes fadeRecover{

    from{

        opacity: 0;

        transform: translateY(10px);
    }

    to{

        opacity: 1;

        transform: translateY(0);
    }
}