
/* Importação da fonte Roboto do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: #e9ecef;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 320px;
    max-width: 90%; /* Para responsividade */
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    width: 100%;
}

h1 {
    color: #007bff;
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-top: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="password"],
button {
    display: block;
    width: 100%;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 5px;
    border: 1px solid #dee2e6;
    box-sizing: border-box;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

button {
    background-color: #007bff;
    color: white;
    border: none;
    margin-top: 1rem;
    cursor: pointer;
    transition: background-color 0.15s, box-shadow 0.15s;
}

button:hover {
    background-color: #0056b3;
    box-shadow: 0 3px 6px rgba(0, 123, 255, 0.5);
}

.extra-links {
    text-align: center;
    width: 100%;
    margin-top: 2rem;
}

.extra-links a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.15s ease-in-out;
}

.extra-links a:hover {
    color: #0056b3;
    text-decoration: underline;
}