/*login*/
body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login {
    width: 420px;
    background: #BEDDB6;
    color: #5A827E;
    border-radius: 10px;
    padding: 30px 40px;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
}

.login h1{
    font-size: 36px;
    text-align: center;
}

.login .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: #ECFAE5;
    border: none;
    outline: none;
    border: 2px solid #5A827E;
    border-radius: 40px;
    font-size: 20px;
    color: #5A827E;
    padding: 20px 45px 19px 20px;
}

.input-box input::placeholder{
    color: #5A827E;
}

.login .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin: -15px 0 15px;
}

.remember-forgot label input{
    accent-color: #fff;
    margin-right: 3px;
    cursor: pointer;
}

.remember-forgot a {
    color: #fff;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
    color: #5A827E;
}

.login .btn {
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.homepage{
    justify-content: center;
    display: flex;
}

.homepage .btn {
    display: inline-block;
    margin-top: 20px;
    width: 80%;
    height: 45px;

    background: #ECFAE5;
    outline: 2px solid #5A827E;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    text-align: center;
    line-height: 45px;
    text-decoration: none;
}

.homepage .btn:hover {

    border: 2px solid #5A827E;
}
/* Verstecke das native Input */
.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Style das Ersatz-Element */
.custom-checkbox .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #5A827E;
  border-radius: 4px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

/* Haken anzeigen, wenn checked */
.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #5A827E;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}