/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Login Area - Split Screen Layout */
.tp-login-area {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-login-register-box {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left Side - Banner Section */
.tp-login-register-banner-box {
    flex: 0 0 50%;
    background: linear-gradient(135deg, #4F46E5 0%, #2563eb 50%, #1E40AF 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 60px;
    overflow: hidden;
}

.tp-login-register-banner-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.tp-login-register-banner-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 1;
}

/* Logo Section */
.tp-login-register-logo {
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.tp-login-register-banner-box::before,
.tp-login-register-banner-box::after {
    display: none !important;
}

.tp-login-register-logo {
    display: none;
}

.tp-login-register-banner-box {
    background: white !important;
}

.tp-login-register-banner-box::before,
.tp-login-register-banner-box::after {
    display: none !important;
}

.tp-login-register-logo {
    display: none;
}

.tp-login-register-title {
    color: #1a1a1a !important;
}

.tp-login-register-title {
    color: #1a1a1a !important;
    font-size: 56px !important; 
    margin-left: 40px !important;
}

.tp-login-register-heading {
    margin-left: 40px !important;
}

.tp-login-register-logo .logo-link {
    display: inline-block;
    color: white;
    font-size: 32px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.tp-login-register-logo .logo-link::before {
    content: 'Acadia';
    color: white;
}

/* Banner Heading */
.tp-login-register-heading {
    position: relative;
    z-index: 10;
    max-width: 500px;
}

.tp-login-register-title {
    color: white;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -1px;
}

/* Decorative Shapes */
.tp-login-register-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.tp-login-register-shape .shape-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.tp-login-register-shape .shape-2 {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 150px;
    height: 150px;
    opacity: 0.08;
}

/* Illustration Area (if you want to add an SVG illustration) */
.tp-login-register-banner-box::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="%23ffffff" opacity="0.05"/><rect x="60" y="60" width="80" height="100" rx="8" fill="%23ffffff" opacity="0.08"/></svg>') no-repeat center;
    background-size: contain;
    z-index: 3;
}

/* Right Side - Form Section */
.tp-login-register-wrapper {
    flex: 0 0 50%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.tp-login-from-box {
    width: 100%;
    max-width: 480px;
    padding: 20px;
}

/* Form Heading */
.tp-login-from-heading {
    text-align: center;
    margin-bottom: 40px;
}

.tp-login-from-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.tp-login-from-heading p {
    color: #6b7280;
    font-size: 15px;
    margin: 0;
}

.tp-login-from-heading a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.tp-login-from-heading a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Form Inputs */
.tp-login-input-form {
    margin-bottom: 24px;
}

.tp-login-input {
    margin-bottom: 20px;
}

.tp-login-input label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.tp-login-input input.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.2s;
    background: white;
    color: #1a1a1a;
}

.tp-login-input input.form-control:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.tp-login-input input.form-control::placeholder {
    color: #9ca3af;
}

/* Password Input with Eye Icon */
.password-input {
    position: relative;
}

.password-input input {
    padding-right: 45px;
}

.tp-login-input-eye {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
    color: #6b7280;
    transition: color 0.2s;
}

.tp-login-input-eye:hover {
    color: #374151;
}

.tp-login-input-eye svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.close-eye-icon {
    display: none;
}

.password-input.show-password .open-eye-icon {
    display: none;
}

.password-input.show-password .close-eye-icon {
    display: block;
}

/* Error Message */
.tp-login-input-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

/* Remember Me and Forgot Password */
.tp-login-from-remeber {
    margin-bottom: 24px;
}

.tp-contact-input-remeber {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tp-contact-input-remeber input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #2563eb;
}

.tp-contact-input-remeber label {
    font-size: 14px;
    color: #4b5563;
    cursor: pointer;
    margin: 0;
}

.tp-login-input-remeber a {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.tp-login-input-remeber a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Sign In Button */
.tp-login-from-btn {
    margin-bottom: 24px;
}

.tp-btn-inner {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.tp-btn-inner:hover {
    border-color: #2563eb !important;
    background: white !important;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
    color: #1a1a1a !important;
}

.tp-btn-inner:active {
    transform: translateY(0);
}

/* Divider */
.tp-login-from-subtitle-heading {
    text-align: center;
    margin: 32px 0 24px;
    position: relative;
}

.tp-login-from-subtitle {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
    background: white;
    padding: 0 16px;
    position: relative;
    display: inline-block;
    z-index: 1;
}

.tp-login-from-subtitle-heading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
    z-index: 0;
}

/* Google Sign-In Button */
.tp-login-from-google-btn {
    margin-bottom: 32px;
}

.google-signin-btn {
    width: 100%;
    background: white;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.2s;
    /* font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; */
}

.google-signin-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.google-signin-btn img {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tp-login-register-banner-box {
        flex: 0 0 45%;
        padding: 60px 40px;
    }

    .tp-login-register-wrapper {
        flex: 0 0 55%;
    }

    .tp-login-register-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .tp-login-register-box {
        flex-direction: column;
    }

    .tp-login-register-banner-box {
        flex: 0 0 auto;
        min-height: 40vh;
        padding: 40px 30px;
    }

    .tp-login-register-wrapper {
        flex: 0 0 auto;
        padding: 40px 20px;
    }

    .tp-login-register-title {
        font-size: 32px;
    }

    .tp-login-register-logo {
        margin-bottom: 40px;
    }

    .tp-login-from-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .tp-login-register-banner-box {
        padding: 30px 20px;
    }

    .tp-login-register-title {
        font-size: 28px;
    }

    .tp-login-from-box {
        padding: 10px;
    }

    .tp-login-from-title {
        font-size: 24px;
    }

    .tp-btn-inner {
        padding: 12px 20px;
    }
}

/* Utility Classes */
.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

.w-100 {
    width: 100%;
}

.p-relative {
    position: relative;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.col-6 {
    flex: 0 0 50%;
    padding: 0 12px;
}

.col-12 {
    flex: 0 0 100%;
    padding: 0 12px;
}

@media (max-width: 576px) {
    .col-6 {
        flex: 0 0 100%;
    }
}

/*----------------------------------------*/
/*  2.5 Preloader
/*----------------------------------------*/
#loading {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tp-preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

#loading-center {
    width: 100%;
    height: 100%;
    position: relative;
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.tp-preloader-logo {
    width: 180px;
    height: 180px;
    position: relative;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tp-preloader-logo img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    animation: zoom-in-zoom-out 2s ease-out infinite;
}
.tp-preloader-circle {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.tp-preloader-circle svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-animation: tp-rotate 5s linear infinite;
    -moz-animation: tp-rotate 5s linear infinite;
    -ms-animation: tp-rotate 5s linear infinite;
    -o-animation: tp-rotate 5s linear infinite;
    animation: tp-rotate 5s linear infinite;
}
.tp-preloader-circle svg circle:last-child {
    stroke: var(--tp-theme-primary);
    stroke-dashoffset: 0;
    stroke-dasharray: 1128, 3150;
    -webkit-animation: tp-loading 4s linear infinite;
    -moz-animation: tp-loading 4s linear infinite;
    -ms-animation: tp-loading 4s linear infinite;
    -o-animation: tp-loading 4s linear infinite;
    animation: tp-loading 4s linear infinite;
    transform-origin: center center;
}
@-webkit-keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}
@-moz-keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}
@-ms-keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}
@keyframes tp-loading {
    0% {
        stroke-dashoffset: 0;
        stroke-dasharray: 0, 3150;
    }
    100% {
        stroke-dashoffset: -1131;
        stroke-dasharray: 1128, 3138;
    }
}
@-webkit-keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-ms-keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes tp-rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.tp-preloader-content {
    text-align: center;
}
.tp-preloader-title {
    font-size: 100px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0px;
}
@media only screen and (max-width: 767px) {
    .tp-preloader-title {
        font-size: 70px;
    }
}
.tp-preloader-subtitle {
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 20px;
    transform: translateX(4px);
    color: var(--tp-common-black);
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(0.9, 0.9);
    }
    100% {
        transform: scale(1, 1);
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    #loading-center-absolute {
        width: 40%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    #loading-center-absolute {
        width: 40%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    #loading-center-absolute {
        width: 45%;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    #loading-center-absolute {
        width: 50%;
    }
}
@media (max-width: 575px) {
    #loading-center-absolute {
        width: 90%;
    }
}

/*----------------------------------------*/
/*  2.1 Back to top
/*----------------------------------------*/
.back-to-top-wrapper {
    position: fixed;
    right: 20px;
    bottom: 0;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: block;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    border-radius: 50%;
}
@media only screen and (max-width: 767px) {
    .back-to-top-wrapper {
        right: 20px;
        bottom: 20px;
    }
}
.back-to-top-wrapper.back-to-top-btn-show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}

.back-to-top-btn {
    display: inline-block;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    background: var(--tp-common-black);
    box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
    color: var(--tp-common-white);
    border-radius: 50%;
}
.back-to-top-btn svg {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}
.back-to-top-btn:hover {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}