.anmeldebox {
    width: max-content;
    height: max-content;
    margin-bottom: 200px;
}
.login-box {
    position: relative;
    width: 400px;
    height: 450px;
    background: #ff6a6a;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
h2 {
    font-size: 2em;
    color: #144e00;
    text-align: center;
    font-family: cursive;
    transition: .5s ease;
}
.input-box {
    position: relative;
    width: 310px;
    margin: 30px 0;
}
.input-box .input-line {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background: #144e00;
    transition: .5s ease;
}
.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #144e00;
    pointer-events: none;
    transition: .5s ease;
}
.input-box label {
    top: -5px;
}
.input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: #144e00;
    padding: 0 35px 0 5px;
    transition: .5s ease;
}
.input-box input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  -webkit-text-fill-color: black;
  transition: background-color 5000s ease-in-out 0s;
}
.input-box input:-moz-autofill {
  box-shadow: 0 0 0px 1000px white inset;
  -moz-text-fill-color: black;
}
.input-box .icon {
    position: absolute;
    right: 8px;
    color: #144e00;
    font-size: 1.2em;
    line-height: 57px;
    transition: .5s ease;
}
.remember-forgot {
    color: #144e00;
    font-size: .9em;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
    transition: .5s ease;
}
.remember-forgot a {
    color: #144e00;
    text-decoration: none;
    transition: color .5s ease;
}
.login {
    width: 100%;
    height: 40px;
    background: #144e00;
    border: none;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1em;
    color: #ffffff;
    font-weight: 500;
    transition: .5s ease;
}
.register-link {
    color: #144e00;
    font-size: .9em;
    text-align: center;
    margin: 25px 0 10px;
    transition: .5s ease;
}
.register-link p a {
    color: #144e00;
    text-decoration: none;
    font-weight: 600;
    transition: color .5s ease;
}