

      * {
         box-sizing: border-box;
      }
      html, body {
         margin: 0;
         padding: 0;
         background:#172f95 ;
         overflow: hidden;
         
      }
      .navbar{
         background-color: #0c77f22a !important;
         background-image: none;
       }
      #signup-form   {
      position: relative;
         margin: 60px auto;
         width: 30%;
         padding: 10px 0 30px 0  ;
         background: #4e64c793;
         color: white;
         box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3), 0 7px 21px 0 rgba(0, 0, 0, 0.20);
      }
     #signin-form  {
      position: relative;
         margin: 110px auto;
         width: 30%;
         padding: 10px 0 30px 0  ;
         background: #4e64c793;
         color: white;
         box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3), 0 7px 21px 0 rgba(0, 0, 0, 0.20);
      }

      #forget-form{
         
         position: relative;
         margin: 150px auto;
         width: 30%;
         padding: 60px 0 50px 0  ;
         background: #4e64c793;
         color: white;
         box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3), 0 7px 21px 0 rgba(0, 0, 0, 0.20);
      }
      #forget-form .form-head{
         font-size: 30px;
      }
      #signup-form:hover + .form-head{
         color: #e2b665;
         text-shadow: #FC0 2px 2px 10px;
      }
      .form-head{
        margin: 30px 0;
        font-size: 40px;
      
      }
    
      label{
        text-align: center;
       justify-content: center;
       align-items: center;
       display: flex;
       position: relative;
       font-size: 15px;
       margin: 0 10px;
      }
      .input-cnt {
         display: flex; /* display the icon and the input in a line */
         margin-bottom: 0px;
         width: 100%;
         padding: 0 15%;
         
      }
      .input-cnt:last-child {
         margin-bottom: 0px;
      }
      .input-cnt > i {
         min-width: 40px; /* set a minimum width for the icon */
         padding: 10px; /* make sure the icon is centered vertically */
         text-align: center; /* horizontally center the icon */
         background: lightgrey;
         border-top-left-radius: 20px;
         border-bottom-left-radius: 20px;
         color: #0076ff;
      }
      /* change styles when focused */
      .input-cnt:hover > i {
         background: #0076ff;
         color: white;
      }
      /* style the inputs */
      #signup-username , #signup-email,
       #signup-password ,#signin-email ,
         #signup-confirm-password 
         ,#signin-username ,
          #signin-password ,#forget-new-password,
          #forget-email {
         outline: none;
         border: none;
         padding: 0px 10px;
         border: 1px solid lightgrey;
         border-top-right-radius: 20px;
         border-bottom-right-radius: 20px;
         background: #4e64c793;
         width: 100%;
         color: #fff;
      }
      #signup-username:focus , #signup-email:focus,
      #signup-password:focus ,#signin-email:focus ,
        #signup-confirm-password:focus 
        ,#signin-username:focus ,
         #signin-password:focus ,#forget-new-password:focus,
         #forget-email:focus{
            border: 1px solid rgb(255, 187, 0);
            box-shadow: #ffef08 .5px 0px 5px;
         }
      ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
         color: rgba(255, 255, 255, 0.418);
         opacity: 1; /* Firefox */
       }
       
       :-ms-input-placeholder { /* Internet Explorer 10-11 */
         color: rgb(255, 255, 255);
       }
       
       ::-ms-input-placeholder { /* Microsoft Edge */
         color: rgb(255, 255, 255);
       }
   
      /* style the submit button */
      .signbtn{
         border: none;
         border-radius: 20px;
         outline: none;
         width: 50%;

         margin: 15px 25%;
         font-size: 105%;
         padding: 8px ;
         color: #0076ff;
         background: white;
         transition-duration: .5s;
      }
      /* add a hover effect for the submit button */
      .signbtn:hover {
         color: white;
         background: #0076ff;
      }
 


#signload{
   display: none;
}

      #loader {
         position: fixed;
         top: 0;
         left: 0;
         width: 100%;
         height: 100%;
         background-color: rgba(0, 0, 0, 0.5);
         display: flex;
         justify-content: center;
         align-items: center;
         z-index: 9999;
       }
       
       .spinner {
         border: 4px solid #f3f3f3;
         border-top: 4px solid #3498db;
         border-radius: 50%;
         width: 30px;
         height: 30px;
         animation: spin 1s linear infinite;
       }
       
       .text {
         color: white;
         font-size: 20px;
         margin-left: 10px;
       }

       @keyframes spin {
         0% { transform: rotate(0deg); }
         100% { transform: rotate(360deg); }
       }
       





       @media only screen and (max-width: 480px) {
#myVideo{
   display: none;
}
.content{
   display: none;
}
         #signin-form {
                  width: 85%;
                  overflow: hidden;
         }
         #signup-form {
            margin-top: 80px;
                  width: 85%;
                  overflow: hidden;
         }
         #forget-form {
                  width: 85%;
                  overflow: hidden;
         }


      }