/*
Theme Name: Corpkit Child
Description: Child Theme for Corpkit Theme
Author: zozothemes
Version: 1.0
Template: corpkit
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-colors, custom-header, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, post-formats, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready
Text Domain: zozothemes
*/

/* -------- Custom Loader -------- */

.page-loader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10000 !important;
	background-color: #0095c9;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-position: center center;
	background-repeat: no-repeat;
}
.loader-bceco {
	position: absolute;
	top: calc(50% - 40px);
	left: calc(50% - 32px);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	perspective: 800px;
}
.inner {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;
}
  
.inner.one {
	left: 0%;
	top: 0%;
	animation: rotate-one 1s linear infinite;
	border-bottom: 3px solid #0095c9;
}
  
.inner.two {
	right: 0%;
	top: 0%;
	animation: rotate-two 1s linear infinite;
	border-right: 3px solid #fff24b;
}
  
.inner.three {
	right: 0%;
	bottom: 0%;
	animation: rotate-three 1s linear infinite;
	border-top: 3px solid #db3832;
}
  
@keyframes rotate-one {
	0% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
  
	100% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
}
  
@keyframes rotate-two {
	0% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
  
	100% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
}
  
@keyframes rotate-three {
	0% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
  
	100% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
}
  
.page-loader .layer {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: var(--e-global-color-accent);
	background: -webkit-linear-gradient(-360deg, #17418a, #ffffff, #ffffff);
	background: -o-linear-gradient(-360deg, #17418a, #ffffff, #ffffff);
	background: -moz-linear-gradient(-360deg, #17418a, #ffffff, #ffffff);
	background: linear-gradient(-360deg, #17418a, #ffffff, #ffffff);
}

/* Section */
.corpkit-auth-section {
    padding: 10px 20px;
    background-color: #f7f9fc;
}

/* Container */
.corpkit-auth-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Box */
.corpkit-auth-box {
    max-width: 480px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 45px;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* Heading */
.corpkit-auth-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 35px;
}

/* Form group */
.corpkit-form-group {
    margin-bottom: 20px;
}

.corpkit-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.corpkit-form-group input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #e4e7ed;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.corpkit-form-group input:focus {
    border-color: #0d6efd;
    outline: none;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.1);
}

/* Button */
.corpkit-auth-button {
    width: 100%;
    height: 50px;
    background-color: #0d6efd;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.corpkit-auth-button:hover {
    background-color: #084fc7;
}

/* Links */
.corpkit-auth-links {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.corpkit-auth-links a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.corpkit-auth-links a:hover {
    text-decoration: underline;
}

.corpkit-auth-links.secondary {
    margin-top: 10px;
}
