

/* login form */

 

body{

  background: radial-gradient(circle, rgba(215,222,255,1) 0%, rgba(43,55,87,1) 100%);



   margin: 0;

   padding: 0;

   box-sizing: border-box;

   letter-spacing: 1px;

   font-family: Lato, sans-serif;

  }

  

  .register-page{

    width: 1100px;

    height: 100vh;

    display: flex;

    margin: 0 auto;

    justify-content: center;

    align-items: center;

  }

  .user-page{

    max-width: 740px;

    height: 100vh;

    display: flex;

    margin: 0 auto;

    justify-content: center;

    align-items: center;

  }

  .register-page  .user-form  .input-field{

    margin: 12px 0;

  } 

  .register-page  .user-form .row >*{

    padding: 0  10px ;

  }

  .register-page .row >*,.user-page .row >* {

    padding: 0;

  }

  .user-form {

    width: 100%;

    border-radius: 0 10px 10px 0;

    padding:30px 45px;

    text-align: center;

    background-color: #fff;

  }



  .user-form h2 {

    font-size: 38px;

    font-weight: 600;

    margin-bottom: 25px;

    color: #2b3757;

    letter-spacing: 0;

}

  

  .user-form .input-field {

    position: relative;

    margin: 20px 0;

  }

  

  .user-form .input-field label {

    color: #000;

    font-size: 16px;

    pointer-events: none;

    transition: 0.15s ease;

  }

  

  .user-form .input-field input, .user-form .input-field select {

    width: 100%;

    height: 36px;

    background: transparent;

    border: none;

    border: 1px solid #e5e5e5;

    outline: none;

    font-size: 14px;

    padding: 0 15px ;

     border-radius: 30px; 

    /* color: #000; */

}

/* Chrome, Safari, Edge, Opera */

.user-form .input-field input::-webkit-outer-spin-button,

.user-form .input-field input::-webkit-inner-spin-button {

  -webkit-appearance: none;

  margin: 0;

}



/* Firefox */dark-skin

.user-form .input-field input[type=number] {

  -moz-appearance: textfield;

}

  

.user-form .input-field input:focus, .user-form .input-field select:focus{

  box-shadow: none;

  border-color: #000;

}

.user-form .input-field select {

  color: #868686 !important;

}

 

 option:not(:first-of-type) {

  color:#000 !important ;

}



  .user-form .input-field input:focus~label,

  .user-form .input-field input:valid~label {

    font-size: 0.8rem;

    top: 10px;

    transform: translateY(-120%);

  }

  .user-form .forget {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin: 35px 0 0px 0;

    color: #000;
    font-size: 15px;

}

  

  .user-form #remember {

    accent-color: #000;

  }

  

  .user-form .forget label {

    display: flex;

    align-items: center;

  }

  

  .user-form .forget label p {

    margin-left: 12px;

    margin-bottom: 0;

  }

  

  .user-form a {

    color: #000;

    text-decoration: none;

  }

  

  .user-form a:hover {

    text-decoration: underline;

  }

  .user-form button {

    background: #2b3757;

    /* max-width: 300px; */

    border-radius: 30px;

    width: 100%;

    color: #fff;

    font-weight: 600;

    padding: 8px 20px;

    cursor: pointer;

    font-size: 16px;

    border: none; 

    margin-top: 20px;

    transition: 0.3s ease;

}

  

  /* .user-form button:hover {

    color: #fff;

    border-color: #fff;

    background: rgba(255, 255, 255, 0.15);

  } */

  

  .user-form .register {

    text-align: center;

    margin-top: 15px;

    color: #000;

  }

  .register a{

    color: #577bdd;

    text-decoration: underline;

  }

  .user-content{

    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

    border-radius: 10px 10px 10px 10px;

    overflow: hidden;

  }

  .welcome-section{

    width: 100%;

    height: 100%;

    background-color: #2b3757;

    border-radius: 10px 0 0 10px;

    display: flex;

    justify-content:center;

    align-items: center;

    flex-direction: column;

  }
  .welcome-section h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    margin-top: 10px;
}

  .welcome-section img{

    max-width: 150px;

  }

  input:-webkit-autofill,
  input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s !important;
  }

  .iti__selected-flag {
    z-index: 1;
    position: relative;
    display: flex;
    border-radius: 30px;
    align-items: center;
    height: 100%;
    padding: 0 6px 0 8px;
}
  /* login form */


