body {
    background: linear-gradient(
        135deg,
        #050505,
        #0c111b,
        #050505
    );
    min-height: 100vh;
}

/* Container */

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 110px);
    padding: 40px 20px;
}

/* Card */

.login-card {
    width: 100%;
    max-width: 450px;

    background: rgba(12, 12, 12, 0.95);

    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;

    padding: 40px;

    box-shadow:
        0 0 30px rgba(212, 175, 55, 0.12);
}

/* Cabeçalho */

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header img {
    width: 80px;
    margin-bottom: 15px;
}

.login-header h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.login-header p {
    color: #b8b8b8;
    font-size: 0.95rem;
}

/* Inputs */

.input-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.input-group label {
    color: #d4af37;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-group input {
    padding: 14px;

    border-radius: 10px;
    border: 1px solid #2a2a2a;

    background: #111;
    color: white;

    font-size: 1rem;

    transition: 0.3s;
}

.input-group input:focus {
    outline: none;

    border-color: #d4af37;

    box-shadow:
        0 0 10px rgba(212, 175, 55, 0.4);
}

/* Botão */

.btn-loginBody {
    width: 100%;

    padding: 15px;

    border: none;
    border-radius: 12px;

    background: #d4af37;
    color: #000;

    font-size: 1rem;
    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.btn-loginBody:hover {
    transform: translateY(-2px);

    background: #e8c454;

    box-shadow:
        0 0 20px rgba(212, 175, 55, 0.5);
}

.register-link {
    margin-top: 25px;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register-link span {
    color: #b8b8b8;
    font-size: 0.95rem;
}

.register-link a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: none;

    transition: 0.3s;
}

.register-link a:hover {
    color: #e8c454;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}