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

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

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

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

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

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

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

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

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

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}

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

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

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

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

.toggle {
  position: relative;
}

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

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

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

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