﻿.Myform-Container {
    width: 100%;
    border-radius: 16px;
    -moz-border-radius: 16px;
    -webkit-border-radius: 16px;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px #ccc;
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 34px !important;
    user-select: none;
    -webkit-user-select: none;
}
#loader-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* semi-transparent white background */
    z-index: 9999; /* Ensure the loader appears on top of other content */
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey border */
    border-top: 16px solid #3498db; /* Blue border on top */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite; /* Animation for spinning */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px; /* Half of the height */
    margin-left: -60px; /* Half of the width */
}
.loader-text {
       text-align: center;
    margin-top: 10%;
    font-size: 24px;
    color: #333;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
