/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Corpo da página */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Contêiner do login */
.login-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Título */
h2 {
    color: #333;
    margin-bottom: 20px;
}

/* Estilo para os campos de entrada */
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus {
    border-color: #6c5ce7;
    outline: none;
}

/* Botão */
button {
    width: 100%;
    padding: 12px;
    background-color: #6c5ce7;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #5a4dd4;
}

/* Link para o cadastro */
p {
    margin-top: 15px;
}

p a {
    color: #6c5ce7;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}
