body {
    font-family: Arial, sans-serif;
    background: url('https://img.freepik.com/vetores-gratis/fundo-de-efeito-fluido-gradiente_23-2149329964.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    height: 100vh;
    margin: 0;
    color: #232f45;
    flex-direction: column-reverse;
    align-items: center;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 75%;
    margin: 20px;
}

h2 {
    text-align: center;
    color: #232f45;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    color: #232f45;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="submit"] {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #232f45;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #232f45;
}

.error {
    color: red;
    margin-bottom: 15px;
    text-align: center;
}

.success {
    color: green;
    margin-bottom: 15px;
    text-align: center;
}

a {
    color: #232f45;
    text-decoration: none;
    text-align: center;
}

a:hover {
    text-decoration: underline;
}
