.login_header {
	display: inline-block;
	width: 100%;
	padding: 8px 10px;
    background: linear-gradient(-45deg, #ee7752, #e73d7e, #23a6d5, #23d5ab, darkblue, #15c94c, #b90a83, #c91515, #b90aab, #2d0ab9);
    background-size: 1000% 800% !important;
    animation: insan_animate 70s ease-in-out infinite alternate;
    position: relative;
}
.logo {
    float: left;
}
.logo img {
    width: 29% !important;
	margin-left: 5%;
}
nav {
    float: right;
    margin-right: 2%;
}
nav ul li {
    display: inline-block;
    padding: 13px 14px;
}
nav ul li a {
    text-decoration: none !important;
	display: inline-block;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
}
nav ul li a:hover,
.active {
    border: 1px solid #fff;
	padding: 6px 13px;
	border-radius: 20px;
}
.toggle_bar {
    width: 32px;
	position: absolute;
	right: 40px;
	top: 16px;
	display: none;
}
.toggle_bar span {
    display: inline-block;
    width: 100%;
	height: 2px;
	background: #fff;
    float: left;
	margin-bottom: 7px;
}
@media (max-width: 991px) {
    .toggle_bar {
        display: block;
	}
    .logo img {
        width: 42% !important;
	    margin-left: 5%;
	}
    nav {
        display: none;
	    width: 100%;
	    border-top: 1px solid #fff;
	    padding-top: 20px;
	    text-align: center;
	    margin-top: 15px;
	}
    nav ul li {
        padding: 15px 0px;
	    width: 100%;
	}
    nav.visible {
        display: block;
    }
}
.main_form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 76vh;
    background: #23242a;
}
.form_sett {
    margin-left: 35%;
    margin-top: 2%;
}
.box {
    position: relative;
    width: 380px;
    height: 420px;
    background: #1c1c1c;
    border-radius: 8px;
    overflow: hidden;
}
.box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, #45f3ff, #45f3ff);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}
.box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 380px;
    height: 420px;
    background: linear-gradient(0deg, transparent, #45f3ff, #45f3ff);
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}
@keyframes animate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.form{
    position: absolute;
    inset: 2px;
    border-radius: 8px;
    background: #28292d;
    z-index: 10;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
}
.form h2 {
    color: #45f3ff;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
}
.inputbox {
    position: relative;
    width: 300px;
    margin-top: 35px;
}
.inputbox input {
    position: relative;
    width: 100%;
    padding: 20px 10px 10px;
    background: transparent;
    border: none !important;
    outline: none !important;
    color: #23242a;
    font-size: 1.2em !important;
    letter-spacing: 0.05em !important;
    z-index: 10;
}
.inputbox span {
    position: absolute;
    left: 0;
    padding: 20px 0px 10px;
    font-size: 1em;
    color: #8f8f8f;
    pointer-events: none;
    letter-spacing: 0.05em;
    transition: 0.5s;
}
.inputbox input:valid ~ span,
.inputbox input:focus ~ span {
    color: #45f3ff;
    transform: translateX(0px) translateY(-34px);
    font-size: 0.75em;
}
.inputbox i {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #45f3ff;
    border-radius: 4px;
    transition: 0.5s;
    pointer-events: none;
    z-index: 9;
}
.inputbox input:valid ~ i,
.inputbox input:focus ~ i {
    height: 44px;
} 
.forget_btn {
    display: flex;
    justify-content: space-between;
}
.forget_btn a {
    margin: 11px 0;
    font-size: 0.87em;
    color: #8f8f8f !important;
    text-decoration: none;
}
.forget_btn a:hover,
.forget_btn a:nth-child(2) {
    color: #45f3ff !important;
}
.login_button {
    border: none;
    outline: none;
    width: 100%;
    background: #45f3ff;
    padding: 11px 25px;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: bold !important;
    cursor: pointer;
    color: #23242a;
}
.login_button:hover {
    background: #1dd6e4;
}
.form_content {
    position: absolute;
    color: #ffffff;
    margin-top: -26.5%;
    margin-left: 10%;
    width: 30%;
}
.form_content p {
    font-size: 16px;
    padding-top: 2%;
}
.login_content {
    margin-top: 4.2%;
    margin-left: 20%;
    margin-right: 20%;
    background: #ffffff;
    padding: 2%;
    border-radius: 10px;
}
.login_content h1, h2 {
    color: #000000;
    padding-bottom: 2%;
}
.login_content p {
    color: #000000;
    font-size: 16px;
}
.page_footer {
    margin-top: 5%;
    background: #23242a;
    min-height: 52vh;
    padding: 5%;
}
.footer_img img {
    width: 20%;
}
.footer_img p {
    color: #ffffff;
    width: 27%;
    font-size: 15px;
    padding-top: 2px;
}
.socials_icon {
    margin-top: 2%;
}
.socials_icon a {
    color: #ffffff;
    padding: 3px;
}
.socials_icon a i {
    border-radius: 50%;
}
.fb {
    background: #1167b8;
    font-size: 20px;
    padding: 5px 10px;
    text-alig: center;
}
.tw {
    background: #1167b8;
    font-size: 20px;
    padding: 5px 6px;
    text-alig: center;
}
.yt {
    background: #d31616;
    font-size: 19px;
    padding: 6px 8px;
    text-alig: center;
}
.sky {
    background: #1167b8;
    font-size: 20px;
    padding: 5px 8px;
    text-alig: center;
}
.footer_setting {
    display: flex;
    flex-wrap: wrap;
    margin-top: -11.3%;
    margin-left: 43%;
    margin-bottom: 4%;
}
.footer_links {
}
.footer_links h2, 
.footer_links_2 h2,
.footer_links_3 h2 {
    color: #ffffff;
}
.footer_links li,
.footer_links_2 li,
.footer_links_3 li {
    padding-top: 5px;
    padding-left: 2px;
}
.footer_links li a,
.footer_links_2 li a,
.footer_links_3 li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
}
.footer_links_2 {
    margin-left: 18%;
}
.footer_links_3 {
    margin-left: 18%;
}
.copyright_footer {
    background: #ebebeb;
    width: 100%;
    padding: 10px;
    text-align: center;
    color: #000000;
}
@media screen and (max-width: 991px) {
    .main_form {
        background-image: none;
    }
    .form h2 {
        font-size: 20px;
    }
    .form_sett {
        margin-left: 0;
        margin-top: 1%;
    }
    .box {
        width: 320px;
    }
    .box::before {
        width: 320px;
    }
    .box::after {
        width: 320px;
    }
    .inputbox {
        position: relative;
        width: 238px;
    }
    .form_content {
        position: relative !important;
        margin-top: 7%;
        margin-left: 10px;
        margin-right: 10px;
        padding: 5%;
        background: #ffffff;
        color: #000000;
        border-radius: 10px;
        width: 94%;
    }
    .login_content {
        margin-top: 5%;
        margin-left: 10px;
        margin-right: 10px;
        padding: 4%;
    }
    .mobile_hidden {
        display: none;
    }
    .page_footer {
        margin-top: 8%;
        min-height: 55vh;
        padding: 11%;
    }
    .footer_img img {
        width: 88%;
    }
    .footer_img p {
        width: 100%;
    }
    .socials_icon {
        margin-top: 7%;
    }
    .footer_setting {
        display: block;
        flex-wrap: none;
        margin-top: 14%;
        margin-left: 0%;
        margin-bottom: 0;
    }
    .footer_links {
        margin-left: 0;
    }
    .footer_links_2 {
        margin-top: 12%;
        margin-left: 0;
    }
    .footer_links_3 {
        margin-top: 12%;
        margin-left: 0;
    }
    .copyright_footer p {
        font-size: 11px;
    }
}
