.login-card-container {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  background-color: #fff;
  vertical-align: middle;
  align-items: center;
}

.login-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 700px;
  padding: 60px 35px 35px 35px;
  border-radius: 40px;
  background-color: #fff;
  box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #cbced1;
}

.login-wrp {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  background-color: #ecf0f3;
  box-shadow: 0px 0px 2px #5f5f5f, 0px 0px 0px 5px #ecf0f3, 8px 8px 15px #a7aaaf,
    -8px -8px 15px #fff;
  border-radius: 50px 0 50px 0;
  height: 150px;
}

.logo {
  width: 100px;
  height: 100px;
}

.title {
  color: #000;
  padding: 15px 0;
  font-size: 1.8em;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-align: center;
}

.fields {
  width: 100%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 200px;
  justify-content: space-evenly;
  margin-bottom: 15px;
}

.fields input {
  border: none;
  outline: none;
  background: none;
  font-size: 18px;
  color: #555;
  padding: 16px 10px 10px 30px;
}

.username,
.password {
  height: 60px;
  margin-bottom: 50px !important;
  border-radius: 25px;
  box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #ecf0f3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  background-color: unset !important;
}

.input-icon {
  width: 20px;
  margin: 0 20px;
}

.signup-button {
  outline: none;
  border: none;
  cursor: pointer;
  width: 320px;
  height: 60px;
  border-radius: 30px;
  font-size: 20px;
  font-weight: 700;
  color: #555;
  background-color: #00aa68;
  box-shadow: 3px 3px 8px #1b1b1b, -3px -3px 8px #fff;
  margin-top: 40px;
}

.signup-button:hover {
  background-color: #555;
  color: #00aa68;
  transition: 0.2s;
  outline: none;
  border: none;
}

.checkbox-container {
  width: 100%;
  padding-left: 30px;
}

.toggle {
  position: relative;
}

.toggle__input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
}

.toggle__label {
  display: inline-flex;
  padding-left: 30px;
}

.toggle__label::after {
  content: "";
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  border: 2px solid #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 3px;
  transition: 0.5s;
  margin-top: 4px;
}

.toggle__input:checked ~ .toggle__label::after {
  transition: 0.5s;
  background-color: #00aa68;
  border-radius: 100%;
}
