.form_outline {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 20px 30px;
    background-color: var(--bg-m-light);
    border-radius: 7px;
}

.form_outline form input {
    display: block;
    margin: 0 0 5px 0;
    width: 100%;
    height: 30px;
}

.form_outline select {
    display: block;
    width: 100%;
    height: 30px;
}

.form_outline form {
    font-size: 11px;
}

.form_outline input[type="submit"] {
    background-color: var(--bg-dark);
    color: #ffffff;
    cursor: pointer;
    margin-top: 25px;
}

span.fta_note {
    font-size: 14px;
    line-height: 21px;
    display: block;
    margin-top: 63px;
    text-align: center;
}

.form_outline textarea {
    display: block;
    width: 100%;
    min-height: 70px;
    margin-bottom: 25px;
}

span.fta_credit {
    text-align: center;
    font-size: 13px;
    display: block;
    font-family: monospace;
    margin: 33px auto;
    width: fit-content;
    padding: 0px 15px;
    background-color: var(--bg-m-light);
    border-radius: 15px;
}

.form_outline form input[type="file"] {
    width: 100%;
    display: block;
    height: 70px;
    position: relative;
    z-index: 3;
    padding: 25px;
}

.form_outline form input[type="file"]::before {
    content: "";
    height: 70px;
    width: 100%;
    background-color: var(--bg-xtra-light);
    position: absolute;
    left: 0;
    top: 0;
    padding: 27px;
    color: #bbb;
    border: 1px solid #bbb;
    border-radius: 3px;
    z-index: -1;
}

.fta_loader {
    position: fixed;
    top: 0;
    left: 0;
    background: #3f3f3fc9;
    width: 100%;
    height: -webkit-fill-available;
    z-index: 999;
    color: #fff;
    text-align: center;
}

.fta_loader img {
    filter: invert(1);
    width: 73px;
}

.fta_loader p {
    font-size: 10px;
}

.loader_box {
    top: 50%;
    position: absolute;
    margin: auto;
    left: 50%;
    transform: translate(-50px, -50px);
}