.main-form-content input[type=text], .main-form-content input[type=password], select#province-sign {


    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 0;
    transition: unset
  }

  .main-form-content input[type=text]:focus, .main-form-content input[type=password]:focus{


    border-bottom: 3px solid var(--primary-color)
  }
  
  span.welcome {
    color: black;
    font-size: 15px;
    font-family: 'PlayfairDisplay-SemiBold';
    padding: 10px 28px 10px 15px ;
  }
  /* Set a style for all buttons */
  button.login-modal {
    background-color: transparent;
    color: black;
    font-size: 15px;
    font-family: 'PlayfairDisplay-SemiBold';
    padding: 10px 28px 10px 15px ;
    border: none;
    cursor: pointer;
    width: 100%;
  }
  button.login-modal:focus{
      outline: none;
  }
  button.login-modal:hover {
    color: var(--primary-color);
   
  }
  button i{
    margin-right: 2px;
  }
  button.login-btn{
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 3px;
    font-weight: 500;
    margin: 25px 0;
  }

  button.login-btn:hover{
    background-color: var(--primary-color-hover);
  }
  
  /* Extra styles for the cancel button */
  .cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
  }
  
  /* Center the image and position the close button */
  #id01 .modal-content .img-container {
  
   
    box-sizing: border-box;
    height: 100%;
  }
  
  img.avatar {
    width: 100%;
    border-radius: 5px 0px 0px 5px;
   height: 100%
  }
  
  #id01 .main-form-content label{
    display: inline;
  }
  
 #id01 .main-form-content{
    height: 100%;
    box-sizing: border-box;
    float: left;
    padding: 15%;
  }
  span.psw {
    float: right;
   
  }

  span.psw a{
    color: var(--primary-color);
  }

  span.psw a:hover{
    color: var(--primary-color-hover);
    text-decoration: none;
  }
  
  /* The Modal (background) */
  .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    
  }
  
  /* Modal Content/Box */
 #id01 .modal-content {
    background-color: #fefefe;
    margin: 5% auto 5% auto; /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
  
    min-width: 733px;
    width: 60%; /* Could be more or less, depending on screen size */
  }
  
  /* The Close Button (x) */
  .main-form-content span.close {
    position: absolute;
    right: 10px;
    top: 0;
    color: var(--primary-color);
    font-size: 35px;
    font-weight: bold;
  }
  
  .main-form-content span.close:hover,
  .main-form-content span.close:focus {
    color: var(--primary-color-hover);
    cursor: pointer;
  }

  .round {
    position: relative;
    
   padding-top: 10px;
  }
  
  .round label {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px;
    margin-top: 12px;
    
   
  }
  
  .round label:after {
    border: 2px solid #fff;
    border-top: none;
    border-right: none;
    content: "";
    height: 6px;
    left: 3px;
    opacity: 0;
    position: absolute;
    top: 5px;
    transform: rotate(-45deg);
    width: 12px;
  }
  
  .round input[type="checkbox"] {
    visibility: hidden;
  }
  
  .round input[type="checkbox"]:checked + label {
    background-color:var(--primary-color);
    border-color:var(--primary-color);
  }
  
  .round input[type="checkbox"]:checked + label:after {
    opacity: 1;
  }
  
  
  .signup-suggest{
    text-align: center;
  }
  
  .signup-suggest span:last-child{
    color: var(--primary-color);
    cursor: pointer;
  }

  .signup-suggest span:last-child:hover{
    color: var(--primary-color-hover);
  }

  ::placeholder{
    color: lightgray;
  }
  /* Add Zoom Animation */
  .animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
  }
  
  @-webkit-keyframes animatezoom {
    from {-webkit-transform: scale(0)} 
    to {-webkit-transform: scale(1)}
  }
    
  @keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
  }
  
  /* Change styles for span and cancel button on extra small screens */
  @media screen and (max-width: 300px) {
    span.psw {
       display: block;
       float: none;
    }
    .cancelbtn {
       width: 100%;
    }
  }

 