﻿:root {
    --theme-color-light: color-mix(in srgb, var(--theme-color) 70%, white 30%);
    --theme-color-dark: color-mix(in srgb, var(--theme-color) 60%, black 40%);
    /* Mix with Blue - Creates cool tones */
    --theme-color-cool: color-mix(in srgb, var(--theme-color) 80%, #4169e1 20%);
    /* Mix with Purple - Creates rich, vibrant shades */
    --theme-color-vibrant: color-mix(in srgb, var(--theme-color) 70%, #9333ea 30%);
    /* Mix with Yellow - Creates warm, energetic tones */
    --theme-color-warm: color-mix(in srgb, var(--theme-color) 70%, gray 30%);
    --theme-color-alpha-10: color-mix(in srgb, var(--theme-color) 10%, transparent);
    --theme-color-alpha-15: color-mix(in srgb, var(--theme-color) 15%, transparent);
    --theme-color-alpha-30: color-mix(in srgb, var(--theme-color) 30%, transparent);
    --theme-color-alpha-50: color-mix(in srgb, var(--theme-color) 50%, transparent);
    --theme-color-alpha-80: color-mix(in srgb, var(--theme-color) 80%, transparent);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
p, span {
    font-weight: 700 !important;
}

.hero-title, .feature-content h3, .footer-title, .form-input-login {
    font-family: Helvetica;
}
/*.info-item span, .footer-powered span, .center span {
    font-weight: 700;
}*/

.center {
    display: grid;
    place-items: center;
    height: 100px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
    .center span {
        font-size: 14px;
    }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    background: #0a0e27;
    position: relative;
}

/* Animated Grid Background */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #88a8e1 1px, transparent 1px), linear-gradient(#4f46e5 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Gradient Overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 255, 163, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(79, 70, 229, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Floating Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(0, 255, 163, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 255, 163, 0.8);
}

    .particle:nth-child(1) {
        top: 20%;
        left: 10%;
        animation-delay: 0s;
        animation-duration: 12s;
    }

    .particle:nth-child(2) {
        top: 60%;
        left: 20%;
        animation-delay: -3s;
        animation-duration: 15s;
    }

    .particle:nth-child(3) {
        top: 40%;
        left: 70%;
        animation-delay: -6s;
        animation-duration: 18s;
    }

    .particle:nth-child(4) {
        top: 80%;
        left: 50%;
        animation-delay: -9s;
        animation-duration: 14s;
    }

    .particle:nth-child(5) {
        top: 30%;
        left: 85%;
        animation-delay: -12s;
        animation-duration: 16s;
    }

    .particle:nth-child(6) {
        top: 70%;
        left: 15%;
        animation-delay: -2s;
        animation-duration: 13s;
    }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    50% {
        transform: translate(50px, -100px) scale(1.5);
    }
}

/* Main Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
}

.login-wrapper {
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left Panel - Branding & Features */
.branding-panel {
    background: linear-gradient(135deg, #2977ff 0%, rgba(79, 70, 229, 0.8) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4%;
}

/*.branding-panel::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: rotate 30s linear infinite;
    }*/

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.brand-content {
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.logo-icon i {
    font-size: 2.25rem;
    background: linear-gradient(135deg, #2547c2, #007bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

.brand-tagline {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 300;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out 0.2s both;
    color: white;
}

.hero-description {
    font-size: 1.75rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 3rem;
    animation: fadeInLeft 0.8s ease-out 0.4s both;
    color: white;
    font-weight: 700;
}

/* Feature Items */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces 3 columns */
    gap: 2rem 3rem;
    margin-top: 2rem;
}


.feature-item {
    display: flex;
    align-items: flex-start;
    animation: fadeInLeft 0.8s ease-out both;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .feature-icon i {
        font-size: 1.5rem;
    }

    .feature-icon:hover {
        animation: pulse 5s ease-in-out infinite;
    }

.feature-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: white;
}

.feature-content p {
    font-size: 0.875rem;
    opacity: 0.9;
    line-height: 1.6;
}


/* Right Panel - Login Form */
.login-panel {
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef0f4;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.login-form-container {
    width: 100%;
    max-width: 440px;
}
.feature.bordered {
    padding: 32px;
    border: 5px solid #3967e5;
    border-radius: 25px;
    background: #3967e5;
}

.feature {
    margin-bottom: 80px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff, #3258e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}


/* Form Elements */
.form-group {
    margin-bottom: 0;
    animation: fadeInUp 0.6s ease-out both;
}

    .form-group:nth-child(1) {
        animation-delay: 0.1s;
    }

    .form-group:nth-child(2) {
        animation-delay: 0.2s;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 35%;
    transform: translateY(-50%);
    color: #3258e1;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input-login {
    width: 100% !important;
    padding: 1rem 1rem 1rem 3.5rem !important;
    background: rgba(30, 41, 59, 0.5) !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 25px !important;
    color: #fff !important;
    font-size: 18px;
    transition: all 0.10s ease !important;
    outline: none !important;
}

    .form-input-login::placeholder {
        color: rgba(255, 255, 255, 0.3) !important;
        font-size: 18px;
        text-transform: none;
    }

    .form-input-login:focus {
        border-color: #3258e1;
        background: #3258e1;
        box-shadow: 0 0 0 4px #3258e1;
        transform: translateY(-2px);
    }

        .form-input-login:focus ~ .input-icon {
            color: #3258e1;
        }

.password-toggle {
    position: absolute;
    right: 1.5rem;
    top: 35%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #3258e1;
    cursor: pointer;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    padding: 0.5rem;
}

    .password-toggle:hover {
        color: #3258e1;
    }

/* Form Options */
.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease-out 0.3s both;
    margin-top: 1rem;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
}

.custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
}

    .custom-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: rgba(30, 41, 59, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.custom-checkbox input:checked ~ .checkmark {
    background: linear-gradient(135deg, #4f46e5, #3258e1);
    border-color: transparent;
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    cursor: pointer;
    user-select: none;
}

.forgot-link {
    color: #3258e1;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .forgot-link:hover {
        color: #3258bb;
        text-decoration: underline;
    }

button[type="submit"] {
    box-shadow: 0 10px 30px #4f46e5 !important;
    background: linear-gradient(135deg, #1f3676, #1840b3) !important;
}
/* Buttons */
.submit-button {
    padding: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease-out 0.4s both;
    position: relative;
    overflow: hidden;
    height: 50px;
    line-height: 48px;
    border: none;
    color: #fff;
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px #4f46e5 !important;
    background: linear-gradient(135deg, #1f3676, #1840b3) !important;
}

    .submit-button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: left 0.5s ease;
    }

    .submit-button:hover::before {
        left: 100%;
    }

    .submit-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(0, 255, 163, 0.5);
    }

    .submit-button:active {
        transform: translateY(0);
    }

.button-text {
    position: relative;
    z-index: 1;
    font-size: 18px;
    text-transform: none;
    font-family: Helvetica;
}

.divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

    .divider::before,
    .divider::after {
        content: '';
        position: absolute;
        top: 50%;
        width: calc(50% - 3rem);
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

.divider-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    padding: 0 1rem;
    background: rgba(15, 23, 42, 0.8);
}

/* Top Logo */
.top-logo {
    text-align: center;
}

/*.logo-top-image {
    max-width: 90%;
    height: 18vh;
    border-radius: 6px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}*/

/* Promo Image */
.promo-image-wrapper {
    text-align: center;
    padding: 40px 20px;
}

.promo-image {
    max-width: 200%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    margin-left: -100px;
}

/* Support Section */
.support-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.support-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.support-link {
    color: #3258e1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .support-link:hover {
        color: #3258bb;
    }


@media (min-width: 1024px) {
    .login-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 1280px) {
    .login-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .form-title {
        font-size: 1.75rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
    }
}


.contact-bar {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    animation: fadeInUp 0.8s ease-out 1s both;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1.40rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

    .contact-item i {
        font-size: 1.25rem;
    }
    .contact-item span {
        font-weight: 700;
    }

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

@media (max-width: 640px) {
    .contact-bar {
        flex-direction: column;
        gap: 1rem;
    }
}


.footer-contact {
    /*background: var(--theme-color-alpha-15);*/
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 2fr auto auto;
    gap: 2rem;
    align-items: start;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

    .info-item i {
        font-size: 1.5rem;
        margin-top: 0.125rem;
        flex-shrink: 0;
        opacity: 0.8;
    }

    .info-item a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 600;
        font-size: 14px;
    }

        .info-item a:hover {
            color: white;
            text-decoration: underline;
        }

.column a {
    color: #fff;
}

.divider {
    margin: 0 0.25rem;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1.75rem;
}

.follow-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

    .social-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        color: white;
    }

    .social-link i {
        5rem;
    }

.footer-powered {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.75rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.powered-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-right-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-end;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-social,
    .footer-powered {
        padding-top: 0;
    }

    .footer-right-stack {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .footer-contact {
        gap: 1.25rem;
    }

    .info-item {
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1rem;
    }

    .footer-right-stack {
        gap: 1rem;
    }
}

.input-wrapper .form-input-login {
    background: #f5f5f5 !important;
    color: #222 !important;
    line-height: 1.5 !important;
    font-family: inherit !important;
}

    .input-wrapper .form-input-login::placeholder {
        color: rgba(30, 41, 59, 0.5) !important;
    }

/*input.form-input-login {
    all: unset;
}*/

input.form-input-login:-webkit-autofill,
input.form-input-login:-webkit-autofill:hover,
input.form-input-login:-webkit-autofill:focus,
input.form-input-login:-webkit-autofill:active {
    transition: all 5000s ease-in-out 0s;
    font-size: 18px !important;
    line-height: 1.5 !important;
    font-family: inherit !important;
    -webkit-text-fill-color: #222 !important;
}


@media (max-width: 968px) {
    .container-forgot-password {
        flex-direction: column;
        gap: 40px;
    }

    .left-section {
        order: 2;
    }

    .right-section {
        order: 1;
    }
}


@keyframes floatCloud {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}


