﻿/* wwwroot/css/GBL/forgotPassword.css */

/* ── FONTE ─────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

body {
    font-family: 'DM Sans', sans-serif;
    background: #0e0e0f;
    color: #e8e4dc;
    margin: 0;
}

/* ── WRAPPER ───────────────────── */
.forgot-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

/* ── BRAND ─────────────────────── */
.forgot-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.forgot-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #fff;
}

    .forgot-brand-name span {
        color: #c9a84c;
    }

/* ── CARD ─────────────────────── */
.forgot-card {
    width: 380px;
    background: #161618;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 28px;
}

/* ── TITLES ───────────────────── */
.forgot-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin: 0 0 6px 0;
}

.forgot-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 18px;
}

/* ── FORM ─────────────────────── */
.forgot-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

    .forgot-group label {
        font-size: 12px;
        color: #999;
    }

.forgot-input {
    background: #0e0e0f;
    border: 1px solid #2a2a2c;
    color: #e8e4dc;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

    .forgot-input:focus {
        border-color: #c9a84c;
    }

/* ── ERROR ─────────────────────── */
.forgot-error {
    font-size: 11px;
    color: #e24b4a;
}

/* ── BUTTON ────────────────────── */
.forgot-btn {
    width: 100%;
    background: #c9a84c;
    color: #0e0e0f;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 6px;
}

    .forgot-btn:hover {
        opacity: 0.9;
    }

/* ── BACK LINK ─────────────────── */
.forgot-back {
    display: block;
    margin-top: 14px;
    font-size: 12px;
    color: #666;
    text-align: center;
    text-decoration: none;
}

    .forgot-back:hover {
        color: #c9a84c;
    }
/* ── cc-toast (toast flutuante global) ── */

.cc-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9999;
    white-space: nowrap;
}

    .cc-toast.show {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .cc-toast.success {
        background: #0d2218;
        border: 1px solid #1a4a30;
        color: #5DCAA5;
    }

    .cc-toast.error {
        background: #220d0d;
        border: 1px solid #4a1a1a;
        color: #e07070;
    }