﻿.container {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
       
    }

    .registration-form {
        background-color: white;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 800px;
        text-align: center;
    }

        .registration-form h2 {
            margin-bottom: 20px;
            color: #333;
        }

.mandatory {
    color: red;
    font-weight: bold;
}

.custom-arrow {
        appearance: none; /* Remove default arrow */
        -webkit-appearance: none;
        -moz-appearance: none;
        background: url("https://cdn-icons-png.flaticon.com/512/271/271228.png") no-repeat right;
        background-size: 15px; /* Adjust size as needed */
        padding-right: 25px; /* Space for arrow */
    }