/* General styling for the registration form */
.site-content {
    display: flex;
    justify-content: center !important;
}
.registration-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.registration-form-wrapper p {
    margin-bottom: 15px;
}

.registration-form-wrapper label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.registration-form-wrapper input[type="text"],
.registration-form-wrapper input[type="email"],
.registration-form-wrapper input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.registration-form-wrapper input[type="submit"],
.registration-form-wrapper button {
    width: 100%;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    display: block;
    text-align: center;
    margin-top: 10px;
}

.registration-form-wrapper input[type="submit"]:hover,
.registration-form-wrapper button:hover {
    background-color: #005b8c;
}

.register-error {
    color: red;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.register-success {
    color: green;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.register-info {
    color: #0073aa;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
}

.button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}

.button:hover {
    background-color: #005b8c;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .registration-form-wrapper {
        padding: 15px;
    }

    .registration-form-wrapper input[type="submit"],
    .registration-form-wrapper button {
        padding: 12px;
        font-size: 14px;
    }
}
.custom-logo {
    max-width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 20px; /* Center the logo and add some space below it */
}