/* Importando a fonte Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Variáveis de tema */
:root {
    --darkened-bg: #2c3e50;
    --body-bg: #ffffff;
    --header-link-color: #3498db;
    --hairline-color: #dcdcdc;
}

/* Aplicando a fonte Poppins globalmente */
body {
    font-family: 'Poppins', sans-serif;
}

/* Estilos para o formulário de login */
.login {
    background: var(--darkened-bg);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#container {
    background: var(--body-bg);
    border: 1px solid var(--hairline-color);
    border-radius: 8px;
    padding: 20px;
    width: 360px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#header {
    text-align: center;
    margin-bottom: 20px;
}

#header h1 {
    font-size: 24px;
    color: var(--header-link-color);
    font-weight: 700;
}

#content {
    padding: 10px;
}

.form-row {
    margin-bottom: 15px;
}

.form-row label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-row input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--hairline-color);
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.submit-row {
    text-align: center;
}

.submit-row button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: var(--header-link-color);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.submit-row button:hover {
    background-color: #2980b9;
}

.password-reset-link {
    text-align: center;
    margin-top: 10px;
}

.password-reset-link a {
    color: var(--header-link-color);
    text-decoration: none;
}

.password-reset-link a:hover {
    text-decoration: underline;
}
