.custom-registration-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.registration-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.registration-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}

.registration-form-wrapper {
    padding: 20px;
    text-align: left;
}

.custom-registration-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.custom-registration-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    text-align: left;
    color: #555;
}

.custom-registration-form input[type="text"],
.custom-registration-form input[type="email"],
.custom-registration-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.custom-registration-form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-registration-form input[type="submit"]:hover {
    background-color: #003d80;
}

.verification-message {
    max-width: 80%; /* Set a relative width instead of a fixed width */
    margin: 20px auto; /* Center the message */
    padding: 15px; /* Add padding to ensure the message has enough space */
    border-radius: 5px;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in the width calculation */
}


.verification-message-block {
    background-color: #f0f8ff; /* Light blue background */
    border: 1px solid #007bff; /* Blue border */
    border-radius: 8px; /* Rounded corners */
    padding: 20px; /* Padding around the content */
    margin: 20px 0; /* Margin above and below the block */
    text-align: center; /* Center align text */
    display: none; /* Hide it by default */
}

.verification-message-block:empty {
    display: none; /* Hide if there is no message */
}

.verification-message.success {
    color: #28a745; /* Green text for success */
}

.verification-message.error {
    color: #dc3545; /* Red text for errors */
}