 /* XXXXXXXXXXXXXXXXXXX  login css XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXxx*/

 /* *{
        margin: 0px;
        padding: 0px;
        box-sizing: border-box;
        font-family: 'Quicksand', sans-serif;
    } */
 .signup-cont {
     margin: 0px;
     padding: 0px;
     box-sizing: border-box;
     font-family: 'Quicksand', sans-serif;
     /* border: 1px solid rebeccapurple; */
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     background-color: rgb(255, 255, 255);
     color: black;
     position: fixed;
     width: 430px;
     top: 50%;
     left: 50%;
     opacity: 0;
     transform: translate(-50%, -50%) scale(1.25);
     transition: top 0ms ease-in-out 200ms,
         opacity 200ms ease-in-out 0ms,
         transform 20ms ease-in-out 0ms;
     border-radius: 15px;
     z-index: 10;

 }

 .signup-cont.active {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
     transition: top 0ms ease-in-out 0ms,
         opacity 200ms ease-in-out 0ms,
         transform 20ms ease-in-out 0ms;

 }

 #close-btn,
 #close-btn2,
 #close-btn3 {
     position: absolute;
     top: 10px;
     right: 10px;
     border: none;
     outline: none;
     background: none;
     font-size: 25px;
     /* font-weight: bold; */
     cursor: pointer;
 }

 .login-body {
     /* margin-top: 30px; */
     margin: 35px;
 }

 .login-body>h2 {
     font-size: 20px;
     margin-bottom: 5px;
 }

 .login-body>h2+p {
     font-weight: bold;
     margin-bottom: 40px;
 }

 .login-body>input {
     border: none;
     outline: none;
     /* border-bottom: 1px solid green; */
     /* box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px; */
     /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; */
     box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
     padding: 8px 14px 8px 0px;
     width: 100%;
     font-size: 16px;
     color: #555;

 }

 .login-body>input:hover {
     border-bottom: 1px solid green;
 }

 .login-body>input+p {
     color: #555;
     font-size: 14px;
     margin-top: 10px;
     margin-bottom: 50px;
 }

 #get-otp {
     display: block;
     margin: auto;
     padding: 13px 48px;
     border-radius: 35px;
     font-weight: bold;
     color: white;
     background-color: rgb(61, 204, 166);
     border: none;
 }

 #get-otp:hover {
     background-color: rgb(26, 179, 138);
 }

 #overlay {
     position: fixed;
     opacity: 0;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: rgba(107, 107, 107, 0.5);
     pointer-events: none;
     transition: top 0ms ease-in-out 0.1s,
         opacity 0.1s ease-in-out 0.1s,
         transform 0.1s ease-in-out 0.1s;
     z-index: 9;
 }

 #overlay.active {
     opacity: 1;
     pointer-events: all;

 }

 /* ----------- OTP Section -------------- */

 .otp-container {
     /* border: 1px solid rebeccapurple; */
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     background-color: white;
     position: fixed;
     width: 430px;
     top: 50%;
     left: 50%;
     opacity: 0;
     transform: translate(-50%, -50%) scale(1.25);
     transition: top 0ms ease-in-out 400ms,
         opacity 200ms ease-in-out 0ms,
         transform 20ms ease-in-out 0ms;
     font-family: 'Quicksand', sans-serif;
     border-radius: 15px;
     z-index: 10;

 }

 .otp-container.active {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1);
     transition: top 0ms ease-in-out 0ms,
         opacity 200ms ease-in-out 0ms,
         transform 20ms ease-in-out 0ms;
 }

 .login-body>#check-otp {
     display: block;
     margin: auto;
     padding: 13px 48px;
     border-radius: 35px;
     font-weight: bold;
     color: white;
     background-color: rgb(61, 204, 166);
     border: none;
 }

 .login-body>#check-otp:hover {
     background-color: rgb(26, 179, 138);
 }

 /* --------------  INFO CUSTOMER -------- */

 .customer-info {
     /* border: 1px solid rebeccapurple; */
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     background-color: white;
     color: #222;
     padding: 40px;
     position: fixed;
     width: 550px;
     top: 50%;
     left: 50%;
     opacity: 0;
     transform: translate(-50%, -50%) scale(1.25);
     transition: top 0ms ease-in-out 400ms,
         opacity 200ms ease-in-out 0ms,
         transform 20ms ease-in-out 0ms;
     font-family: 'Quicksand', sans-serif;
     border-radius: 15px;
     z-index: 10;
 }

 .customer-info.active {
     opacity: 1;
     transform: translate(-50%, -50%) scale(1.25);
     transition: top 0ms ease-in-out 0ms,
         opacity 200ms ease-in-out 0ms,
         transform 20ms ease-in-out 0ms;
 }

 .customer-info>h2+p {
     margin-top: 2px;
     margin-bottom: 30px;
     font-weight: bold;
 }

 .customer-info input {
     padding: 8px 14px 8px 3px;
     font-size: 16px;
     margin-top: 15px;
     border: none;
     outline: none;
     box-shadow: rgba(14, 14, 14, 0.1) 0px 1px 0px;

 }

 .customer-info input:hover {
     border-bottom: 1px solid rgb(99, 184, 99);
 }

 .customer-info #email {
     width: 46%;
     display: block;
 }

 .customer-info #mobileNumber {
     margin-bottom: 25px;
     width: 46%;
 }

 .customer-info #status input {
     margin-right: 20px;
     margin-left: 3px;
 }

 #names-div {
     display: flex;
     justify-content: space-between;
     margin-bottom: 30px;
 }

 #names-div>input {
     width: 46%;
 }

 .customer-info #final-submit {
     display: block;
     padding: 13px 48px;
     border-radius: 35px;
     font-weight: bold;
     color: white;
     background-color: rgb(61, 204, 166);
     border: none;
     margin: 30px auto;
     margin-bottom: 0px;

 }

 .customer-info #final-submit:hover {
     background-color: rgb(26, 179, 138);
 }

 #user {
     cursor: pointer;
     /* font-size: 13px; */
     display: inline;
 }

 #user:hover {
     color: black;
 }

 #status>label {
     width: 30px;
 }

 @media all and (max-width:750px) {
     .signup-cont,.otp_container {
         margin: auto;
         width: 95%;
         padding: 0px;
     }

     .customer-info{
         width: 180px;
         margin: auto;
     }
     
 }