/* * * * * General CSS * * * * */

#logo {
  width: 70px;
  height: 70px;
  /* background-color: white; */
  /* filter: invert(100%); */
  border-radius: 50%;
  margin: 0px 10px 20px 1px; /* top, right, bottom, left */
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}


#login-page-id{
    display: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  background: #eaeff4;
}

.container-shadow {
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}


.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 950px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}




.container {
  position: relative;
  width: 100%;
  max-width: 850px;
  height: auto;
  display: flex;
  background: #ffffff;
  box-shadow: 0 0 5px #999999;
}

.credit {
  position: relative;
  margin-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  text-align: center;
  color: #666666;
  font-size: 15px;
  font-weight: 400;
}

.credit a {
  color: #222222;
  font-size: 16px;
  font-weight: 600;
}

.col-left,
.col-right {
  padding: 30px;
  display: flex;
}

.col-left {
  width: 60%;
  -webkit-clip-path: polygon(0 0%, 0% 100%, 100% 0%);
  clip-path: polygon(0 0%, 0% 100%, 100% 0%);
  background: #2135ee;
}

.col-right {
  padding: 60px 30px;
  width: 50%;
  margin-left: -10%;
}

@media(max-width: 800.98px) {
  .container {
    flex-direction: column;
    box-shadow: none; 
  }
}

  @media(max-width: 800.98px) {
  .wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: 950px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: space-between;

  }

  .col-left,
  .col-right {
    width: 100%;
    margin: 0;
    -webkit-clip-path: none;
    clip-path: none;
  }

  .col-right {
    padding: 30px;
  }
}

.login-text {
  position: relative;
  width: 100%;
  color: #ffffff;
}

.login-text h2 {
  margin: 0 0 5px 0;
  font-size: 30px;
  font-weight: 700;
}

.login-text p {
  margin: 0 0 20px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.login-text .btn {
  display: inline-block;
  padding: 7px 20px;
  font-size: 16px;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 30px;
  color: #ffffff;
  outline: none;
  border: 1px solid #ffffff;
  box-shadow: inset 0 0 0 0 #ffffff;
  transition: .3s;
  -webkit-transition: .3s;
}

.login-text .btn:hover {
  color: #2135ee;
  box-shadow: inset 150px 0 0 0 #ffffff;
}

.login-form {
  position: relative;
  width: 100%;
  margin-left: 20px;
  margin-right: 20px;
}

.login-form h2 {
  margin: 0px 0px 15px 0;
  font-size: 22px;
  font-weight: 700;
}

.login-form p {
  margin: 0 0 10px 0;
  text-align: left;
  color: #666666;
  font-size: 15px;
}

.login-form p:last-child {
  margin: 0;
  padding-top: 3px;
}

.login-form p a {
  color: #44c7f5;
  font-size: 14px;
  text-decoration: none;
}

.login-form label {
  display: block;
  width: 100%;
  margin-bottom: 2px;
  letter-spacing: .5px;
}

.login-form p:last-child label {
  width: 60%;
  float: left;
}

.login-form label span {
  color: #ff574e;
  padding-left: 2px;
}

.login-form input {
  display: block;
  width: 100%;
  height: 35px;
  padding: 0 10px;
  outline: none;
  border: 1px solid #cccccc;
  border-radius: 30px;
}

.login-form input:focus {
  border-color: #ff574e;
}

.login-form button,
.login-form input[type=submit] {
  display: inline-block;
  width: 100%;
  margin-top: 5px;
  color: #2135ee;
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  background: transparent;
  border: 1px solid #2135ee;
  border-radius: 30px;
  box-shadow: inset 0 0 0 0 #2135ee;
  transition: .3s;
  -webkit-transition: .3s;
}

.login-form-signin {
    display: inline-block;
    width: 100%;
    margin-top: 5px;
    color: #44c7f5;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    background: transparent;
    border: 1px solid #44c7f5;
    border-radius: 30px;
    box-shadow: inset 0 0 0 0 #44c7f5;
    transition: .3s;
    -webkit-transition: .3s;
  }

.login-form button:hover,

.login-form input[type=submit]:hover {
  color: #ffffff;
  box-shadow: inset 455px 0 0 0 #2135ee;
}

  .login-form-signin.loading:after {
    display: block;
  }
  
  @keyframes spin {
    0% {
      transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
      transform: translate(-50%, -50%) rotate(360deg);
    }
  }









  