body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #0f0f0f;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.login-card {
    width: 100%;
    max-width: 500px;
    padding: 2.5rem;
    text-align: center;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--branco);
    margin-bottom: 2rem;
}

#title-ofertas {
    color: var(--laranja);
}

.form-label {
    display: none;
}

.form-control {
    height: 48px;
    border-radius: 6px;
    text-align: left;
}

.form-control::placeholder {
    color: var(--btn-cinza);
    opacity: 1;
}

.form-control:focus {
    outline: none;
    border-color: var(--laranja);
    box-shadow: 0 0 5px rgba(255, 106, 0, 0.5);
}

.btn-primary {
    background-color: var(--laranja);
    border: none;
    height: 48px;
    font-weight: 600;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-primary:hover {
    background-color: var(--laranja-escuro) ;
}