/* RESET */
* {
    box-sizing: border-box;
}

/* BODY */
.login-body {
    margin: 0;
    height: 100vh;
    background: linear-gradient(135deg, #0E5389, #0a3d66);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.login-container {
    width: 100%;
    max-width: 380px;
}

/* CARD */
.login-card {
    background: rgba(255, 255, 255, 0.10);
    padding: 35px 30px;
    border-radius: 12px;
    backdrop-filter: blur(12px);

    color: white;
    text-align: center;

    /* leve borda elegante */
    border: 1px solid rgba(255,255,255,0.1);
}

.login-logo {
    width: 88px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.12);
    padding: 10px;
}

/* TÍTULO */
.login-card h2 {
    margin-bottom: 25px;
    font-weight: 600;
}

/* INPUTS */
.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;

    border: none;
    border-radius: 6px;
    outline: none;

    font-size: 14px;

    /* identidade visual */
    background: #FFFFFF;
    color: #0E5389;
}

/* BOTÃO */
button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    background: #DB8F11;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* HOVER */
button:hover {
    background: #c97c0f;
    transform: translateY(-1px);
}

/* CLICK */
button:active {
    transform: scale(0.97);
}

/* ERRO LOGIN */
.login-error {
    margin-top: 12px;
    font-size: 13px;
    color: #ffb3b3;
}

/* LINKS (caso use depois) */
.forgot {
    margin-top: 15px;
    text-align: center;
}

.forgot a {
    color: #ffffff;
    font-size: 13px;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
}

.forgot a:hover {
    opacity: 1;
    text-decoration: underline;
}
