.form-container {
    display: flex;
    margin: auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    flex-direction: column;
}

.form-container .form-label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
}


.form-container > .form-item {
    width: 100%;
    margin-bottom: 12px;
}

.form-container > .form-item:last-of-type {
    margin-bottom: 0px;
}

.form-container input {
    border-radius: 8px;
    border: solid 1.5px #E5E5E6;
    height: 32px;
    width: -webkit-fill-available;
    line-height: 32px;
    padding: 0px 8px;
    min-width: 250px;
}

.form-container textarea {
    border-radius: 8px;
    border: solid 1.5px #E5E5E6;
    height: 32px;
    width: -webkit-fill-available;
    line-height: 32px;
    padding: 0px 8px;
    min-width: 250px;
}

.form-container input[type=button] {
    background: #5B7CFD;
    width: -webkit-fill-available;
    color: white;
    border: none;
    min-width: 250px;
    font-size: 14px;
    cursor: pointer;
}

.space50 {
    height: 50px;
}

.space40 {
    height: 40px;
}

.space30 {
    height: 30px;
}

.space20 {
    height: 20px;
}

.space10 {
    height: 10px;
}

.btn-blue {
    -webkit-appearance: none;
    background: #5B7CFD;
    color: white;
    cursor: pointer;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}