/* Reset de base */
body, h1, p, a, form, label, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    text-align: center;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: rgb(2,0,36);
}

a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
}

.container {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    font-size: 24px;
    margin-bottom: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

label {
    font-size: 14px;
    text-align: left;
}

input {
    padding: 0.8rem;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
}

input:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

button {
    padding: 0.8rem;
    background-color: #6f42c1;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #4c2c88;
}

p {
    margin-top: 1rem;
    font-size: 14px;
}

.footer-link {
    margin-top: 1rem;
    display: inline-block;
}
