
/* ==========================================================================================================
									                  	SIGNUP FORM
   ========================================================================================================== */
   * {box-sizing: border-box}

   /* Full-width input fields */
     input[type=text], input[type=password] {
     width: 80%;
     margin: 5px 0 22px 0;
     display: inline-block;
     border: 2px solid rgb(249, 244, 244);
     border-radius: 5px;
     padding: 10px;
   }
   
   input[type=text]:focus, input[type=password]:focus {
     outline: none;
   }
   
   hr {
     border: 1px solid #f1f1f1;
     margin-bottom: 25px;
   }
   
   /* Set a style for all buttons */
   .button {
     background-color: #234197;
     color: white;
     cursor: pointer;
     width: 80%;
     opacity: 0.9;
     margin: 5px 0 22px 0;
     display: inline-block;
     border: none;
     border-radius: 5px;
     padding: 10px;
   }
   
   button:hover {
     opacity:1;
   }
 
   /* Add padding to container elements */
   .containerForm {
     width: 30%;
     box-sizing: content-box;  
     border: 1px solid #ffffff;
     padding: 10px;
 
   }
   .containerPopup {
    width: 100%;
    height:100vh;
    background: #3c5077;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #333;
   }
   
   /* Change styles for signup button on extra small screens */
   @media screen and (max-width:100%) {
     .signupbtn {
       width: 80%;
     }
   }

   .center {
     margin: auto;
     width: 25%;
     box-sizing: content-box;  
     border: 1px solid #ffffff;
     padding: 10px;
     box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.05);
   }

   div.a {
     text-align: center;
   }
   