/* Estilos para a página de cadastro */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Use min-height instead of height */
    background-color: #f4f4f4;
    padding: 10px;
    overflow: auto; /* Add overflow auto to allow scrolling */
}


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

.signup-card h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #2c3e50;
}

.form-group {
    text-align: left;
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-check {
    text-align: left;
    margin-bottom: 15px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #2c3e50;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1abc9c;
}

.login-link {
    margin-top: 15px;
    font-size: 14px;
}

.login-link a {
    color: #3498db;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

.error-messages {
    background-color: #ffdddd;
    border: 1px solid #ff5c5c;
    color: #d8000c;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: left;
}

.error-messages ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.error {
    color: #d8000c;
    font-size: 14px;
}

/* button {
    padding: 5px;
    font-size: 12px;
    margin-left: 5px;
}

button:hover {
    background-color: #1abc9c;
    color: white;
} */
