*{
    box-sizing: border-box;
}

body {
    background-color: #f6edef;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}


/*die eigentliche box*/
.anmelden_box {
    width: 100%;
    max-width: 420px;

    background-color: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/*überschrift*/
.anmelden_box h1 {

    margin-bottom: 15px;
    color: #27651c;
    text-align: center;
}

/*kurzer text unter der überschrift*/
.anmelden_text {

    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
    color: #444;
}

/*beschriftung der eingabefelder*/
.anmelden_box label {
    
    display: block; /*Display block damit margin bottom hier funktioniert. label ist ein inline element und braucht display: x*/
    margin-bottom: 6px; 
    font-weight: bold;
}

/*eingabefelder*/
.anmelden_box input {

    width: 100%;
    padding: 12px;
    margin-bottom: 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/*button*/
.anmelden_box button {

    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background-color: #27651c;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/*button wenn man mit der maus drüber geht*/
.anmelden_box button:hover {
    background-color: #1f4f17;
}

/*text unten mit registrieren link*/
.registrieren_hinweis {

    margin-top: 22px;
    text-align: center;
    color: #444;
}

/*link zur registrierung*/
.registrieren_hinweis a {
    color: #27651c;
    font-weight: bold;
}

.zurück{
    text-align: center;
    margin-top: 5px;
}

.zurück a {
    text-decoration: none;
    color: #444;
}

.fehler {
    color: red;
    text-align: center;
    margin-bottom: 15px;
}

.fehlerrahmen {
    border: 2px solid red !important;
}