/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5; /* Light background color */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Centered Container */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 500px; /* Max width for the container */
    padding: 30px;
    background-color: white;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border: 2px solid #ddd; /* Light border color */
}

/* Header Styling */
header h1 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

/* Form Styling */
form {
    width: 100%;
}

form label {
    font-size: 1rem;
    color: #555;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="password"],
form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

form button {
    width: 100%;
    padding: 12px;
    background-color: #0066cc;; 
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

form button:hover {
    background-color: #00478f;
}

/* Links */
form a {
    display: inline-block;
    margin-top: 10px;
    text-align: center;
    color: #0066cc;;
    text-decoration: none;
    font-size: 0.9rem;
}

form a:hover {
    text-decoration: underline;
}

.erro p {
    color: red;
    gap: 10px;

}

/* Responsive Layout */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }

    header h1 {
        font-size: 1.5rem;
    }

    form input[type="text"],
    form input[type="password"] {
        font-size: 0.9rem;
    }

    form button {
        font-size: 1rem;
    }
}
