* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Inter var, sans-serif;
}

body {
  background: linear-gradient(90deg, #BAF5D3, #60CC96);
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
   user-select: none;
}

.container {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}

.login-content {
background: linear-gradient(90deg, #4BA377, #6EB88F);
position: relative;
height: 600px;
min-width: 360px;
box-shadow: 0px 0px 24px #4E9671;
}

.login-box {
z-index: 1;
position: relative;
height: 100%;
}

.login-background {
position: absolute;
overflow: hidden;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
-webkit-clip-path: inset(0 0 0 0);
clip-path: inset(0 0 0 0);
}

.login-background-span {
transform: rotate(45deg);
position: absolute;
}

.login-background-span-1 {
  height: 400px;
  width: 200px;
  background: #72BA91;
  top: 450px;
  right: 60px;
  border-radius: 60px;
}

.login-background-span-2 {
height: 220px;
width: 220px;
background: #5BAB83;
top: -150px;
right: 20px;
border-radius: 50px;
}

.login-background-span-3 {
height: 540px;
width: 190px;
background: linear-gradient(270deg, #4BA377, #5F9E7A);
top: 0px;
right: 0;
border-radius: 60px;
}

.login-background-span-4 {
  height: 520px;
  width: 520px;
  background: #FFF;
  top: 0px;
  right: 125px;
  border-radius: 0 60px 0 0;
}

.login-background-logo {
background-repeat: no-repeat;
width: 150px;
height: 177px;
background-image: url(../images/icon.png);
background-size: 150px 177px;
z-index: 9999;
position: absolute;
top: 30px;
left: 25px;
}

.login {
width: 320px;
padding: 30px;
padding-top: 210px;
}

.login-control {
padding: 20px 0px;
position: relative;
}

.email-control {
  padding: 8px 0px;
  position: relative;
}

.email-code-input {
  border: none;
  border-bottom: 2px solid #BED4C6;
  background: none;
  padding: 10px;
  padding-left: 24px;
  font-weight: 700;
  width: 55%;
  transition: .2s;
}

.email-code-btn {
  background: #fff;
  font-size: 14px;
  padding: 5px 5px;
  border-radius: 8px;
  border: 1px solid #C8E8D6;
  text-transform: uppercase;
  font-weight: 700;
  align-items: center;
  width: 20%;
  color: #419E69;
  box-shadow: 0px 2px 2px #4E9671;
  cursor: pointer;
  transition: .2s;
}

.login-input {
border: none;
border-bottom: 2px solid #BED4C6;
background: none;
padding: 10px;
padding-left: 24px;
font-weight: 700;
width: 75%;
transition: .2s;
}

.login-input:active,
.login-input:focus,
.login-input:hover,
.email-code-input:active,
.email-code-input:focus,
.email-code-input:hover {
outline: none;
border-bottom-color: #5F9E7A;
}

.login-btn {
background: #fff;
font-size: 14px;
margin-top: 30px;
padding: 15px 30px;
border-radius: 20px;
border: 1px solid #C8E8D6;
text-transform: uppercase;
font-weight: 700;
display: flex;
align-items: center;
width: 100%;
color: #419E69;
box-shadow: 0px 2px 2px #4E9671;
cursor: pointer;
transition: .2s;
}

.login-btn:active,
.login-btn:focus,
.login-btn:hover {
border-color: #5F9E7A;
outline: none;
}

.login-btn-icon {
font-size: 24px;
margin-left: auto;
color: #6DB58C;
}

.text-login {
  float: right;
  color: #fff;
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
}
