/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #4A90E2, #50C9C3);
    color: #333;
}

/* Container de login */
.login-container {
    background: #fff;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.system-name {
    font-size: 2rem;
    font-weight: bold;
    color: #333; /* Cor mais escura para contrastar com o título Login */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); /* Sombra sutil para destaque */
    margin-bottom: 1rem; /* Mais espaço abaixo para separar do título Login */
}

/* Título de login */
.login-container h2 {
    margin-bottom: 1.5rem;
    color: #4A90E2;
    font-size: 1.5rem; /* Menor que o nome do sistema */
}

/* Estilo dos inputs */
.input-group {
    margin-bottom: 1rem;
    text-align: left;
}

.input-group label {
    font-size: 0.9rem;
    color: #666;
}

.input-group input {
    width: 100%;
    padding: 0.8rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
}

.input-group input:focus {
    outline: none;
    border-color: #4A90E2;
}

/* Botão de login */
.login-button {
    width: 100%;
    padding: 0.8rem;
    background: #4A90E2;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-button:hover {
    background: #357ABD;
}

/* Link de esquecimento de senha */
.forgot-password {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.forgot-password a {
    color: #4A90E2;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('shared/img/atendimento.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    z-index: -1;
}

.content {
    position: relative;
    text-align: center;
    color: white;
    z-index: 1;
}