.register-form .form-control {
	margin-bottom: 0.4em;
}

/* Register form container and title */
.register-form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
}

.register-title {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

/* Register form button styling */
.register-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background: #ED1C24;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.register-form input[type="submit"]:hover {
    background: #000;
}

/* Register form footer */
.register-footer {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e1e1e1;
}

.register-footer a {
    color: #ED1C24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.register-footer a:hover {
    color: #000;
    text-decoration: none;
}
