.login-page {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Fundo Moderno: Gradiente com padrão de grid sutil */
    background-color: #f8fafc;
    background-image:
        radial-gradient(at 0% 0%, rgba(241, 97, 54, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(30, 41, 59, 0.05) 0px, transparent 50%),
        linear-gradient(rgba(226, 232, 240, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(226, 232, 240, 0.2) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
}

.login-container {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.login-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.login-logo img {
    height: 50px;
}

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

.login-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px;
}

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

/* Estilo dos Inputs conforme image_3849e6.png */
.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.2s;
}

.form-group input:focus {
    border-color: #F16136;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(241, 97, 54, 0.1);
    outline: none;
}

.button--login {
    width: 100%;
    padding: 14px;
    background-color: #F16136;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    transition: transform 0.1s, background 0.2s;
}

.button--login:hover {
    background-color: #d94e29;
    transform: translateY(-1px);
}

.login-footer {
    margin-top: 32px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}