.registration-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; /* Ensures the form is vertically centered */
    width: 100%; /* Ensures the form is horizontally centered */
    margin: 20px 0;
}

.registration-form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

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

.registration-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.registration-form input:focus {
    outline: none;
    border-color: #4CAF50;  /* Green border on focus */
}

.registration-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.registration-form button:hover {
    background-color: #45a049;
}

.registration-form p {
    font-size: 14px;
    color: #ff0000;
    margin-top: 10px;
}

.registration-form .success-message {
    font-size: 14px;
    color: #4CAF50;
    margin-top: 10px;
}
@media (max-width: 768px) {
    .registration-form-wrapper {
        margin: 0px;

    }
}