
form{
    justify-content: center;
}


form *{
    all: unset;
    margin: 8px;
}

form input{
    border-style: solid;
    border-color: #3f3f52;
    border-radius: 8px;
    padding: 8px;
    width: calc(100% - 20px);
}

form input[type=submit]{
    background-color: #8cd640;
    color: white;
    text-align: center;
    border-color:  #8cd640;
    box-shadow: -1px 2px 30px -6px rgba(0,0,0,0.25);
    margin-top: 16px;


}

form input[type=submit]:hover{
    background-color: #70a933;
    cursor: pointer;
    border-color:  #70a933;

}

form a{
    text-decoration: underline;
    color: #8cd640;
}

.divider{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}

.divider *{
    width: 100%;
}

.divider p {
    width: fit-content!important;
}

.divider .divider-line{
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #3f3f52;
    position: relative;
    top: -8px;
}

.invalid{
    background-color: rgba(255, 0, 0, 0.1);
    border-color: red;
}