body {
    background-color: #fff;
}

.wrapper {
    width: 100%;
}

.formstyle {
    display: flex;
    flex-direction: column;
    margin: 2rem;
    padding: 1rem 2rem;
    border: 2px solid #ddd;
    
}

.formstyle input{
    padding: 0;
    width: 100%;
    
}

.formstyle input[type=text], .formstyle input[type=password] {
    box-shadow: 1px 1px grey;
}

    

.required {
    color: red;
}

.success {
    color: green;
}

.submit {
    width: 100%;
}