.mo-validated {
    padding-right: 25px !important
}

.mo-validated-icon {
    position: absolute;
    top: calc(50% - 10px);
    background: #00cd00;
    color: #fff;
    border-radius: 50%;
    right: 5px;
    animation: slideDown .3s ease-in forwards
}

.mo_message_box {
    display: none;
    width: 100%;
    background-color: #f7f6f7;
    padding: 1em 2em 1em 3.5em;
    text-align: center;
    margin-top: 3px;
}

@keyframes slideDown {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.moloader {
    width: 8px !important;
    height: 8px !important;
    border-radius: 25% !important;
    margin: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    animation: d5 1s infinite linear alternate;
}
@keyframes d5 {
    0%  {box-shadow: 20px 0 #fff, -20px 0 #757575;background: #fff }
    33% {box-shadow: 20px 0 #fff, -20px 0 #757575;background: #757575}
    66% {box-shadow: 20px 0 #757575,-20px 0 #fff; background: #757575}
    100%{box-shadow: 20px 0 #757575,-20px 0 #fff; background: #fff }
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.popup {
    display: none; /* Hidden by default */
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensures the popup is above other content */
}
.popup-content {
    width: 500px; /* Fixed width for popup */
    max-width: 400px; 
    transform: translate(-50%, -50%);
    margin-left:unset !important;
    top: 50%; 
    left: 50%;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    position: relative;
    height: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
    font-size: 30px;
    color: #ec0e0e;
}
.input-field {
    margin-bottom: 15px;
}
.input-field label {
    display: block;
    margin-bottom: 5px;
}
.input-field input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.mh-button {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}
.mh-button:hover {
    background-color: #0056b3;
}
.resend {
    text-align: center;
    margin-top: 10px;
}
a:hover {
    cursor: pointer;
}

