* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', Arial, sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #333;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    background-color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    padding: 15px;
    text-align: center;
    position: relative;
    /* Removida a borda inferior */
}

.header h1 {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.content {
    padding: 20px 15px;
    flex: 1;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 25px; /* Aumentado o espaçamento entre os inputs */
}

.form-group label {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #000;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #f5f5f5;
    font-size: 16px;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    font-weight: bold;
}

.form-hint {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.no-password, .have-password {
    color: #003087;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
    margin-bottom: 20px;
}

.footer {
    padding: 15px;
    background-color: white;
    position: sticky;
    bottom: 0;
    width: 100%;
}

.btn-primary {
    width: 100%;
    padding: 15px;
    background-color: #ffff00;
    color: #003087;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 900; /* Aumentado o peso da fonte para mais bold */
    cursor: pointer;
    text-transform: uppercase;
}

.hidden {
    display: none;
}
