.register-v {
    display: flex;
    justify-content: space-between;
    min-height: 80px;
}

.register-v .home-link {
    color: #0d0f30;
    font-weight: 700;
    padding: 20px 15px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    text-decoration: none;
    line-height: 40px;
    font-family: "FontSite";
}

.reg-page {
    background-color: #f7f7f7;
}

.register-v .home-link:hover {
    color: #fecd36;
    background: #0d0f30;
}

.form-style {
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    background-color: #fff;
    padding: 30px;
    margin: 3rem .5rem;
    box-shadow: 0px 4px 10px #00000021, 0px -6px 12px #ffffff;
    border: 1px solid transparent;
}

.form-style h3 {
    text-align: center;
    font-weight: bold;
    color: #0d0f30;
    margin-bottom: 20px;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;

}

.flex-row>div {
    float: none;
}

.flex-row .img-wr {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.flex-row .img-wr img {
    max-width: 100%;
}

.form-style .form-control {
    height: 42px;
    padding: 6px 12px;
    color: #333;
    background-color: #fff;
    background-image: none;
    border: 1px solid rgb(255 196 4 / 30%);
    border-radius: 0;
    box-shadow: 0 3px 6px rgb(0 0 0 / 4%);
    font-family: 'DroidArabicKufiRegular';

}

.form-style .form-control:hover {
    border: 1px solid rgb(255 196 4 / 70%);


}

.form-style .form-control:focus {
    box-shadow: inset 0 -1px 4px rgb(0 0 0 / 12%);
    border: 1px solid rgb(255 196 4 / 70%);
}

.form-style label {
    color: #555;
    font-family: 'DroidArabicKufiRegular';
    font-size: 13px;

}

.form-style .btn-submit {
    line-height: 36px;
    margin-top: 16px;
    background-color: #0d0f30;
    color: #fff;
    font-family: bold;
    font-family: "FontSite";
    font-size: 20px;
    border: 0;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    box-shadow: 0 2px 4px rgb(0 0 0 / 22%);
}

.form-style .btn-submit:focus,
.form-style .btn-submit:hover {
    background-color: #fecd36;
    color: #0d0f30;
    outline: 0 !important;
    box-shadow: 0 0 1px inset rgb(0 0 0 / 22%);
}

@media (min-width: 992px) {

    .intro-content {

        background: #fec81d;

    }

}