.navbar {
    /* position: relative; */
}

.general-content {
    margin-top: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

@media screen and (min-height: 740px) {
    .general-content {
        height: calc(100vh - 140px);
    }
}

.form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--high-blue);
    border-radius: 20px;
    overflow: hidden;
    height: 600px !important;
}

    .form-wrapper.large {
        height: 680px !important;
    }

    .form-image {
        height: 100%;
        width: 100%;
    }

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-title {
    text-align: center;
}

.form-inputs {
    height: 100%;
    object-fit: cover;
    padding: 20px;
    width: 100%;
}

.myform {
    height: 100%;
}

.myform>* {
    display: block;
    width: 100%;
}

.form-input {
    background: rgba(6, 9, 34, 0.4);
    border: none;
    outline: none;
    border-bottom: 3px solid var(--light-blue);
    padding: 10px;
    color: var(--white);
    margin-bottom: 12px;
    display: block;
    width: 100%;
}

.form-file-label {
    border: 3px solid var(--mid-blue);
    width: fit-content;
    padding: 6px 20px;
    border-radius: 5px;
    margin-bottom: 5px;
}

.form-file {
    display: none;
}

.form-inputs-holder {
    display: block;
}

textarea {
    min-height: 70px;
    height: 145px;
    max-height: 145px;
}