/* ========================================== */
/* RESET DO BODY PARA A TELA DE LOGIN         */
/* ========================================== */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ========================================== */
/* SOBRESCREVE A BARRA APENAS NA TELA LOGIN   */
/* ========================================== */
.barra-acessibilidade {
    position: sticky;
    top: 0;
    width: 100%;
    align-self: stretch;
}

/* ========================================== */
/* CENTRALIZA O LOGIN VERTICALMENTE           */
/* ========================================== */
.login-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
    margin: auto;
}

.login-container h2 {
    margin-bottom: 25px;
    color: #333;
}

/* ========================================== */
/* INPUTS                                     */
/* ========================================== */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
}

/* ========================================== */
/* BOTÃO DE LOGIN                             */
/* ========================================== */
.login-btn {
    width: 100%;
    padding: 12px;
    background-color: #24483e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #0056b3;
}

/* ========================================== */
/* LINKS                                      */
/* ========================================== */
.links {
    margin-top: 20px;
}

.links a {
    color: #007bff;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
}

@media (max-width: 480px) {
  .login-container {
    width: 92%;
    padding: 24px 20px;
  }
}