* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #402259;
}

.login-container {
    width: 100%;
    width: 400px;
    max-width: 400px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}


.login-form, .reset-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Posiciona o footer no lugar correto */
.login-footer {
    background-color: #402259;
    color: white;
    text-align: center;
    padding: 10px 0;
}

    .login-footer span {
        color: lightgray;
        font-size: 14px;
    }

h2 {
    text-align: center;
    font-weight: 500;
    color: #333;
}

.input-group {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 0.9rem;
    color: #555;
}

input[type="text"], input[type="password"], input[type="email"] {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    color: #333;
    transition: border 0.2s;
}

    input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus {
        border-color: #007bff;
        outline: none;
    }

button {
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    background-color: #ee6700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

    button:hover {
        background-color: #632b00;
    }

.options {
    display: flex;
    justify-content: center;
}

    .options a {
        color: #007bff;
        font-size: 0.9rem;
        text-decoration: none;
        transition: color 0.2s;
    }

        .options a:hover {
            color: #0056b3;
        }

.hidden {
    display: none;
}
