
html {
  background-color: #F1F2F7;
}

body {
  /* font-family: "Poppins", sans-serif; */
  height: 100vh;
  background-color: #f1f2f7;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}



/* STRUCTURE */

.login-wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  height: 100vh;
  padding: 20px;
  background-color: #f1f2f7;
}

#formContent {
  border-radius: 10px;
  background-color: #fff;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 34px 30px 28px;
  border: 1px solid #e2e5e8;
  text-align: center;
  transition: none;
}

.login-brand img {
  width: min(300px, 82%);
  height: auto;
  display: block;
  margin: 0 auto 28px;
}

.login-form {
  display: grid;
  gap: 12px;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}



/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #93d3c4;
  border: none;
  color: white;
  padding: 15px 70px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 5px;
  width: 100%;
  margin: 8px 0 0;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: rgb(147, 211, 196);
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  background-color: #82c7b7;
}

input[type=text],input[type=password],input[type=email] {
  background-color: #f6f6f6;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 0;
  width: 100%;
  border: 1px solid #e1e4e7;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type=button],
input[type=submit],
input[type=reset],
input[type=text],
input[type=password],
input[type=email],
.login-sso-link,
.tex-login {
  transition: none;
}

input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=email]::placeholder {
  color: #cccccc;
}

.login-sso {
  margin-top: 22px;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #8a8a8a;
  font-size: 13px;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #e1e4e7;
}

.login-sso-link {
  display: block;
  width: 100%;
  border: 1px solid #aeb7bd;
  border-radius: 5px;
  padding: 14px 16px;
  color: #5e6870;
  background: #fff;
  text-decoration: none;
}

.login-sso-link:focus,
input:focus,
input[type=submit]:focus {
  outline: 2px solid #93d3c4;
  outline-offset: 2px;
}



/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:60%;
}

.tex-login {
  color: #797979;
  
}

.tex-login:hover{
  color:#9e9e9e;
  ;
}
