/* CSS for the registration form */
.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 60px); /* Adjust based on your navbar height */
    padding: 20px;
}

.register-container {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 0 20px rgba(255, 150, 0, 0.3);
}

.register-container h2 {
    color: #ff9600;
    margin-bottom: 20px;
    text-align: center;
    font-size: 24px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: #ff9600;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #444;
    background-color: rgba(30, 30, 30, 0.7);
    color: white;
    border-radius: 4px;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #ff9600;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 150, 0, 0.5);
}

button[type="submit"] {
    width: 100%;
    background-color: #ff9600;
    color: black;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

button[type="submit"]:hover {
    background-color: #ffa827;
}

.response-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
}

.response-message.success {
    background-color: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
}

.response-message.error {
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    color: #dc3545;
}

.validation-errors {
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(220, 53, 69, 0.2);
    border: 1px solid #dc3545;
    border-radius: 4px;
    color: #dc3545;
}

/* Hide honeypot field */
.honeypot-field {
    display: none;
}