/* ================================
   BASE
================================ */
body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

/* ================================
   IMAGEM DE FUNDO
================================ */
.auth-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.auth-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Escurece a imagem */
.auth-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

/* ================================
   CARD DE LOGIN
================================ */
.auth-card {
    position: relative;
    z-index: 10;

    /* Fundo escuro para destacar */
    background: rgba(0, 0, 0, 0.25);

    /* Efeito vidro */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    /* Layout */
    padding: 40px;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;

    /* Aparência */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.10);

    /* Cor padrão do texto */
    color: #ffffff;
}

/* ================================
   TEXTOS
================================ */
.auth-card p {
    color: #ffffff;
    margin-bottom: 0;
}

/* Labels do formulário */
.auth-card label {
    color: #ffffff;
    font-weight: 500;
}

/* Título */
.auth-title {
    color: #d5a721;
    font-weight: 700;
    margin-bottom: 8px;
}

/* ================================
   INPUTS
================================ */
.form-control {
    border-radius: 6px;
}

.form-control:focus {
    border-color: #d5a721;
    box-shadow: 0 0 0 0.2rem rgba(213, 167, 33, 0.25);
}

/* ================================
   BOTÃO
================================ */
.btn-custom {
    background-color: #d5a721;
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 16px;
}

.btn-custom:hover {
    background-color: #ff914d;
    color: #ffffff;
}

/* ================================
   LINKS
================================ */
.auth-link {
    text-decoration: none;
    color: #d5a721;
    font-weight: 700;
}

.auth-link:hover {
    color: #ffffff;
}