* {
    --color-primary: #f7931e;
    --color-primary-hover: #db8522;
}
body {
    min-height: 100%;
    background: rgb(16, 19, 35);
    background: linear-gradient(
        172deg,
        rgba(16, 19, 35, 1) 0%,
        rgba(16, 19, 35, 1) 15%,
        rgba(245, 248, 250, 1) 100%
    );
    background-repeat: no-repeat;
    background-size: cover;
}
nav {
    height: 100px;
    min-height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    color: white;
    font-size: 14px;
    font-weight: 300;
}

nav a {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

nav a:hover,
nav a:hover i {
    color: var(--color-primary);
}

nav i {
    font-size: 40px;
    margin-right: 15px;
}

main {
    margin-top: 25px;
}

footer {
    margin-top: 50px;
    background-color: transparent;
    color: #707070;
}

footer p {
    text-align: center;
}

nav .dropdown-item {
    color: white;
}
nav .dropdown-item:focus,
.dropdown-item:hover {
    color: white !important;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
}
nav .dropdown-menu {
    background: #545b62;
}

a {
    color: #707070;
}

a:hover {
    color: var(--color-primary) !important;
}

.form-check.form-check-solid .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.input-field-sec {
    display:none;
}

/* Login page */
#main_holder {
    border-radius: 15px;
    box-shadow: 0 10px 15px #00000038;
    overflow: hidden;
}
#form_section {
    padding: 40px;
    align-items: center;
    justify-content: space-between;
    display: flex;
    background: white;
    flex-direction: column;
}
#form_section h1 i {
    font-size: 30px;
    color: var(--color-primary);
}

#form_section #kt_sign_in_submit,
#form_section #kt_sign_up_submit,
#form_section #kt_sign_up_submit_tts {
    background: var(--color-primary);
    color: white;
}
#form_section #kt_sign_in_submit:hover,
#form_section #kt_sign_up_submit:hover,
#form_section #kt_sign_up_submit_tts:hover {
    background: var(--color-primary-hover);
    color: white;
}

#form_section .input-group-text {
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

#form_section .input-group-text i {
    color: var(--color-primary);
    font-size: 16px;
}

#form_section .input-group input,
#form_section .input-group select {
    padding-left: 5px;
}

#form_section .download_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    font-size: 11px;
}

#form_section .download_btn:hover {
    background: #f5f5f5;
}

#form_section .download_btn i {
    font-size: 22px;
}
#form_section .download_btn:hover i {
    color: var(--color-primary);
}

#form_section .select2-container {
    position: relative;
    flex: 1 1 auto;
    width: 1% !important;
    min-width: 0;
}

#video_section {
    /* set video signin.mp4 as background of this div and loop it when it finishes */
    overflow: hidden;
    padding: 0;
}

#video_section {
    position: relative;
    height: 100%;
}

#video_section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#video_section .video_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: 100%;
    z-index: 1;
    position: relative;
    text-align: center;
    color: white;
    padding: 75px;
}
#video_section p {
    font-size: 16px;
    font-weight: 300;
}

#video_section h2 {
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 20px;
}

#video_section a {
    color: white;
    border: 1px solid white;
}

#video_section a:hover {
    color: white !important;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
}

@media screen and (max-width:768px) {
    nav i {
        margin-right: 5px;
    }
    
    nav #goBack span {
        font-size: 12px;
    }
}
