/* General page styling */

/* Flexbox container for centering the form */
.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Full viewport height */
    padding: 20px;
}

/* Form wrapper with a card-like appearance */
.form-wrapper {
    background: #ffffff;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 100%;
    max-width: 700px; /* Maximum width for the form */
}

/* Form title styling */
.form-title {
    text-align: center;
    color: #333333;
    margin-bottom: 15px;
}

/* Form field styling */
form input[type="text"],
form input[type="password"],
form input[type="email"],
form select,
form textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    outline: none;
}

/* Submit button styling */
.submit-button {
    background-color: #1e64e6;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
}

/* Submit button hover effect */
.submit-button:hover {
    background-color: #0056b3;
}
