.form_center {
    position: absolute;
    top: 50%;
    left: calc(50% - 262px);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 500px;
}

fieldset {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 20px;
    width: 100%;
    margin: 20px auto;
    position: relative;
}

form {
    flex-direction: column;
}

.form_header {
    flex-direction: column;
}

.form_header p {
    font-style: italic;
    text-align: center;
}

.form_return {
    position: absolute;
    top: 10px;
    left: 10px;
}

.form_entry {
    width: 95%;
    background-color: white;
    transition: border 1s;
    border: 1px solid white;
    padding: 15px;
    border-radius: 10px;
    margin: 10px;
    transition: box-shadow 0.2s;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.1);
}

.form_entry:hover {
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
}

.form_entry:focus {
    outline: none;
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.3);
}

.form_tfaCode {
    text-align: center;
    font-size: larger;
    font-weight: bold;
}

.form_password {
    width: calc(100% - 35px);
    margin-right: 5px;
    border: 0;
}

.form_password:focus {
    outline: none;
}

select {
    width: 100% !important;
}

textarea {
    height: 100px;
}

input[type=submit] {
    width: 100%;
    cursor: pointer;
    background-color: rgb(57, 190, 57);
    border: 0;
    color: white;
    font-weight: bold;
}

.form_link {
    width: 60%;
    text-align: center;
    color: black;
}

.error {
    background-color: rgb(255, 0, 0, 0.8);
    color: white;
    border: 0;
    text-align: center;
    font-weight: bold;
}

.success {
    background-color: rgb(57, 190, 57);
    color: white;
    border: 0;
    text-align: center;
    font-weight: bold;
}

@media screen and (max-width:900px) {

    .form_center {
        width: 80%;
        left: calc(10% - 12px);
    }

    .form_entry {
        width: 90%;
    }
}