/* CSS RESET */
* {
    margin:0;
    padding:0;
  }
html {
    box-sizing: border-box;
    font-size:62.5%;
  }
  *,
  *::after,
  *::before {
    box-sizing: inherit;
  }
  /* CSS VARIBLES*/
  :root {
  --color-gradient-1: #1f2c77;
  --color-gradient-2: rgba(30, 88, 202, 0.9);
  --color-white-1: #fff;
  --color-label-text: #84a3e6;
  }
  /* MAIN CSS */
body {
    font-family: 'Titillium Web', sans-serif;
    background-image: linear-gradient(to right bottom, var(--color-gradient-1),var(--color-gradient-2));
    height:100vh;
  }
  
  @keyframes fadeInOpacity {
      0% {
          opacity: 0;
      }
      100% {
          opacity: 1;
      }
  }
  .fadein {
      opacity: 1;
      animation-name: fadeInOpacity;
      animation-iteration-count: 1;
      animation-timing-function: ease-in;
      animation-duration: 0.5s;
  }
  .page-wrap {
     max-width: 90rem;
     height:55rem;
     background-color: var(--color-white-1);
     margin: 30px auto;
     display: flex;
      border-radius: 15px;
      overflow: hidden;
      perspective: 1px;
      box-shadow: 0px 6px 20px rgba(0,0,0,0.15), 0px 6px    25px rgba(0,0,0,0.35);
     align-items: center;
     margin-top: 170px;
  }
  
  .logo-section {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-right:1px solid #eee;
    height: 100%;
 }

 .logo-section h1 {
    font-size:32px;
    text-transform: uppercase;
    margin-left:10px;
    text-align: center;
  }
 .logo-section .logo {
    height:170px;
    margin-top:-25px;
    margin-left:20px;
  }


.login-section {
    display: flex;
    flex:1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-section  h1 {
    text-transform: uppercase;
    font-size:21px;
    margin-bottom:15px;
  }
.login-section  form {
    width:70%;
  }
  .login-section .form-group {
  margin-bottom:15px;
  display: flex;
  flex:1;
  justify-content: center;
  }

  .login-section .form-group  label {
    flex: 0 0 30%;
    font-size:17px;
    margin-right: 10px;
    color: var(--color-label-text); 
    margin-top:5px;
    display:none;
  }
.login-section  .input-control {
     flex: 1;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 13px 9px;
    align-self: center;
    font-size : 14px;
   
  }

  .login-section  .input-control:focus {
    outline: none;
    box-shadow: 0px 2px 5px rgba(0,0,0,0.35);
  }

  .login-section  .input-control ::-webkit-input-placeholder {
    color: rgb(245, 191, 120);
  }


  

.btn-login {
      background-color: var(--color-gradient-1);
      color: var(--color-white-1);
      flex:0 0 80%;
      border: none;
      padding:16px;
      border-radius:20px;
      margin-top:15px;
      font-size:16px;
      transition: all .3s ease-in-out
}

.btn-login :hover {
        background-color:#e97838;
        box-shadow:0px 6px 8px rgba(0,0,0,0.25),
        0px 6px 15px rgba(0,0,0,0.15);
        transform: scale(1.2);
}
.pConent {
    font-size:1.6rem;
    color: #777;
}

.pConent  a {
     color: var(--color-gradient-1);
     text-decoration: none;
    }
  
.hidden {
    display: none;
}


.error-text
{
  color: #721c24;
    padding: 8px 10px;
    text-align: center;
    border-radius: 5px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    margin-bottom: 10px;
    display: none;
    font-size: 14px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
}