 /* Style for overlay background */
 @import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');


 :root {
     --black-text-color: #252525;
     --white-text-color: #fcfcfc;
     --blue-bg: #1767dd;
 }
 
 body {
     margin: 0;
     padding: 0;
     font-family: 'Roboto', sans-serif;
 }
 .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    z-index: 9999;
}


/* Style for modal content */
.modal-content {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    animation: modal 0.4s ease-in;
}
@keyframes modal{
    0%{
        opacity: 0.2;
        margin-top: 10px;
    }
    100%{
        opacity: 1;
        margin-top: 0px;
    }
}


/* Style for close button */
.close-button {
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}

.modal-img{
    width: 50%;
    padding: 40px;
}

.modal-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media only screen and (max-width:756px) {
     /* Style for overlay background */
 @import url('https://fonts.googleapis.com/css2?family=Poppins&family=Roboto&display=swap');


 :root {
     --black-text-color: #252525;
     --white-text-color: #fcfcfc;
     --blue-bg: #1767dd;
 }
 
 body {
     margin: 0;
     padding: 0;
     font-family: 'Roboto', sans-serif;
 }
 .form-heading{
    color: #043c8b;
    font-size: 18px;
    width: 100%;
    text-align: center;
  }
 .modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black */
    z-index: 9999;
}
.modal-img{
    width: 100%;
    /* height: 200px; */
    overflow: hidden;
    height: 500px;
    padding: 10px;
}
form{
    width: 100%;
    gap: 10px;
  padding: 5px;
  /* padding: 20px 10px; */
}
/* Style for modal content */
.modal-content {
    width: 95%;
    height: 90%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* Style for close button */
.close-button {
    font-size: 18px;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
}