* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.hello-logo {
  margin: 0 auto;
  height: 40vh;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hello-logo .hello-container {
  width: 700px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.hello-logo img {
  width: 60%;
  height: 200px;
  margin-right: 20px;
  pointer-events: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.hello-logo .hello {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.hello-logo .hello h1 {
  text-align: center;
  color: #112A48;
  font-size: 50px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  pointer-events: none;
}

.hello-logo .hello h1 span {
  color: black;
}

.hello-logo .hello h3 {
  color: #112A48;
  font-size: 28px;
  font-weight: 500;
  pointer-events: none;
  text-align: center;
}

.hello-logo .divider {
  border: 2px solid #112A48;
  height: 250px;
}

.login {
  background-color: #112A48;
  height: 60vh;
  border-radius: 100px 100px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login .login-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login .login-container .welcome h2 {
  font-size: 30px;
  font-weight: 300;
  color: white;
}

.login .login-container .welcome h2 + small {
  color: white;
}

.login .login-container #loginInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 3vh 0;
}

.login .login-container #loginInfo .username,
.password {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

#username,
#password {
  width: 440px;
  height: 5vh;
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 0 45px;
  margin-bottom: 2vh;
}

.login .login-container #loginInfo .username .mail-element {
  position: absolute;
  background-color: white;
  top: 18%;
  right: 10px;
  color: #112A48;
}

.login .login-container .verification {
  width: 450px;
  display: flex;
  justify-content: space-between;
}

.login .login-container .verification-input {
  width: 15%;
  height: 70px;
  text-align: center;
  font-size: 30px;
  border-radius: 10px;
  border: 0;
  outline: 0;
  background-color: #ccc;
  color: white;
}

.login .login-container .verification input:focus {
  outline-style: solid;
  outline-color: white;
  outline-width: medium;
  caret-color: transparent;
}

.login .login-container .verification input::placeholder {
  color: white;
}

.icons,
.clone {
  z-index: 1;
  position: absolute;
  top: -17px;
  left: -40px;
  color: white;
  width: 115px;
  pointer-events: none;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

.clone {
  z-index: 0;
  left: -32px;
}

.steps-to-recover h2 {
  color: white;
  padding: 1vh 0;
}
.steps-to-recover li {
  color: white;
  margin-bottom: 1vh;
}

.btn {
  margin: 0 auto;
  border: none;
  text-transform: uppercase;
  background-color: lightslategray;
  width: 455px;
  height: 5vh;
  border-radius: 15px;
  cursor: pointer;
  color: white;
  font-weight: 500;
  font-size: 18px;
}

.login .other-options {
  margin-bottom: 2vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login .other-options .recover {
  color: white;
  text-transform: capitalize;
  text-decoration: none;
  font-size: 17px;
  margin-bottom: 1vh;
}

.login .other-options .recover:hover {
  color: black;
  transition: 0.5s linear;
}

.login .other-options hr {
  width: 200px;
  border: 1px solid white;
  margin-bottom: 2vh;
}

.login .other-options .socials {
  width: 200px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 3vh;
}

.login .other-options .socials .fa-brands {
  color: white;
  font-size: 30px;
}

.login .other-options .socials .fa-brands:hover {
  color: black;
  transition: 0.5s linear;
}

.login .other-options .ibu-pay a {
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}
.d-none {
  display: none;
}



@media only screen and (max-width:1024px){
    .hello-logo {
        align-items: center;
    }

    .login .login-container .welcome h2{
        font-size:calc(100% + 20%);
        text-align:center;

    }

    .btn{
        width:100%;
    }

    .login{
        align-items:unset;
    }

    .login .login-container{
        align-items:unset;
    }

    #username, #password{
        width:90%;
    }

    .login .login-container #loginInfo .username .mail-element {
        position: absolute;
        background-color: white;
        top: 50%;
        transform: translateY(-94%);
        right: 10px;
        font-size: 13px;
        color: #112A48;
    }

    .icons, .clone {
        top: 50%;
        transform: translateY(-59%);
    }
}