/* Modern Full-Screen Auth Design - TEXVOO */
:root {
    --primary: #7367f0;
    --secondary: #22c55e;
    --dark: #0f172a;
    --light: #f8fafc;
    --gradient-cyan: linear-gradient(135deg, #7367f0 0%, #0f172a 100%);
    --gradient-green: linear-gradient(135deg, #22c55e 0%, #0f172a 100%);
}

/* Full screen split layout */
.authentication-wrapper.authentication-cover {
    background: white !important;
    min-height: 100vh;
    display: flex;
    margin: 0;
    padding: 0;
}

.authentication-inner {
    display: flex;
    width: 100%;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
}

/* Left side - Gradient with branding */
.authentication-inner .col-lg-8 {
    background: var(--gradient-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem !important;
    position: relative;
}

.authentication-inner .col-lg-8::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.authentication-inner .col-lg-8 img {
    position: relative;
    z-index: 1;
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Right side - Form */
.authentication-inner .col-lg-4 {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem !important;
}

.authentication-bg {
    background: white !important;
}

/* Logo positioning */
.auth-cover-brand {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

/* Form container */
.w-px-400 {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 2rem;
}

.auth-inline-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-inline-logo svg {
    width: 100%;
    max-width: 220px;
    height: auto;
}

/* Form styling */
.form-control {
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(115, 103, 240, 0.1);
    outline: none;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-green) !important;
    border: none !important;
    border-radius: 12px;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(115, 103, 240, 0.3) !important;
}

/* Typography */
h4 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--dark) !important;
    margin-bottom: 0.5rem !important;
}

p {
    color: #64748b !important;
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
}

/* Labels */
.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* Links */
a {
    color: var(--primary) !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary) !important;
}

/* Input groups */
.input-group-text {
    border-radius: 0 12px 12px 0;
    border: 2px solid #e2e8f0;
    border-left: none;
    background: white;
}

.input-group .form-control {
    border-radius: 12px 0 0 12px;
}

/* Checkbox */
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Divider */
.divider {
    margin: 2rem 0;
}

.divider-text {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Social buttons */
.btn-label-facebook,
.btn-label-google-plus,
.btn-label-twitter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    color: #334155;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: white;
    transition: all 0.2s ease;
}

.btn-label-facebook:hover,
.btn-label-google-plus:hover,
.btn-label-twitter:hover {
    background: #f8fafc;
}

/* Responsive */
@media (max-width: 991px) {
    .authentication-inner .col-lg-8 {
        display: none !important;
    }
    
    .authentication-inner .col-lg-4 {
        width: 100%;
    }
    
    .auth-cover-brand {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 2rem;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .authentication-inner .col-lg-4 {
        padding: 1.5rem !important;
    }

    .w-px-400 {
        padding: 0 1rem;
    }

    .mt-12 {
        margin-top: 0 !important;
    }

    .pt-5 {
        padding-top: 0 !important;
    }

    h4 {
        font-size: 1.6rem !important;
        line-height: 1.2 !important;
    }

    p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }

    .auth-inline-logo {
        margin-bottom: 0.75rem;
    }

    .auth-cover-brand {
        margin-bottom: 1rem;
    }
}

/* Remove old card styling */
.card,
.card-body {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
