.form-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 4rem auto;
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

.form-card h1 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-card form {
    width: 100%;
}

.form-group {
    margin-bottom: 1rem;
}

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

.form-group input, 
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.help-text {
    font-size: 0.8em;
    color: #666;
    margin-bottom: 0.5rem;
    display: block;
}

.error-msg {
    color: #dc3545;
    margin-bottom: 1rem;
    font-size: 0.9em;
}

ul.errorlist {
    color: #dc3545;
    font-size: 0.9em;
    margin-bottom: 0.5rem;
    padding-left: 0;
    list-style-type: none;
}

.button-submit {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    box-sizing: border-box;
    margin-top: 1rem;
}

.button-submit:hover {
    background-color: #0056b3;
}

.auth-links {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-links a {
    color: #007bff;
    text-decoration: none;
}

.auth-links a:hover {
    text-decoration: underline;
}