 body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #FFE4E9 0%, #FFCDD2 50%, #F8BBD0 100%);
            min-height: 100vh;
            margin: 0;
            padding: 30px 20px;
            color: #7B241C;
            overflow-x: hidden;
        }

        /* Abstract Background */
        .abstract-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.3;
            background:
                radial-gradient(circle at 20% 80%, #FD79A8 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, #E84393 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, #E1306C 0%, transparent 50%);
        }

        /* Main Container */
        .auth-wrapper {
            max-width: 1060px;
            margin: 0 auto;
            max-height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-container {
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(225, 48, 108, 0.15);
            box-shadow:
                0 30px 60px rgba(225, 48, 108, 0.1),
                0 10px 40px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            overflow: hidden;
            position: relative;
        }

        /* Decorative Elements */
        .decoration-corner {
            position: absolute;
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #E1306C, #C13584);
            border-radius: 0 0 100% 0;
            top: 0;
            left: 0;
            z-index: 1;
            opacity: 0.1;
        }

        .decoration-dots {
            position: absolute;
            right: 40px;
            bottom: 40px;
            width: 120px;
            height: 120px;
            background-image:
                radial-gradient(circle at 25% 25%, #FD79A8 3px, transparent 4px),
                radial-gradient(circle at 75% 75%, #E84393 3px, transparent 4px);
            background-size: 40px 40px;
            opacity: 0.2;
        }

        /* Animated Particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #FD79A8;
            border-radius: 50%;
            animation: floatParticle 15s infinite linear;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }

            10% {
                opacity: 1;
            }

            90% {
                opacity: 1;
            }

            100% {
                transform: translateY(-100px) translateX(100px);
                opacity: 0;
            }
        }

        /* Brand Section */
        .brand-section {
            background: linear-gradient(135deg, #E1306C, #C13584);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            color: white;
            height: 100%;
        }

        .brand-section::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            top: -200px;
            right: -200px;
            border-radius: 50%;
        }

        .logo-wrapper {
            position: relative;
            margin-bottom: 30px;
        }

        .logo-circle {
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            position: relative;
            border: 3px solid rgba(255, 255, 255, 0.3);
        }

        .logo-circle::after {
            content: '';
            position: absolute;
            width: 130px;
            height: 130px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .logo-img {
            width: 70px;
            height: auto;
            filter: brightness(0) invert(1);
            position: relative;
            z-index: 2;
        }

        .brand-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
            text-align: center;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .brand-tagline {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            text-align: center;
            max-width: 400px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 7px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .feature-text {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.95);
        }

        /* Form Section */
        .form-section {
            padding: 12px 40px;
            background: rgba(255, 255, 255, 0.95);
            position: relative;
            z-index: 1;
        }

        /* Form Tabs */
        .form-tabs {
            display: flex;
            justify-content: space-evenly;
            gap: 20px;
            margin-bottom: 40px;
            border-bottom: 2px solid rgba(225, 48, 108, 0.15);
/*            padding-bottom: 15px;*/
        }

        .tab-btn {
            background: none;
            border: none;
            color: #797D7F;
            font-size: 1.2rem;
            font-weight: 600;
            padding: 10px 0;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            color: #E1306C;
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(45deg, #FD79A8, #E84393);
            border-radius: 2px;
        }

        /* Form Container */
        .form-container {
            position: relative;
        }

        .form-slide {
            display: block;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .form-slide.hidden {
            display: none;
        }

        /* Form Headers */
        .form-header {
            margin-bottom: 40px;
            text-align: center;
        }

        .form-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            background: linear-gradient(135deg, #E1306C, #C13584);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .form-subtitle {
            color: #797D7F;
            font-size: 1rem;
        }

        /* Input Groups */
        .input-wrapper {
            position: relative;
          margin-bottom: 14px;
        }

        .input-with-icon {
            position: relative;
        }

        .form-input {
            width: 100%;
           padding: 9px 13px 10px 49px;
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid rgba(225, 48, 108, 0.15);
            border-radius: 15px;
            color: #7B241C;
            font-size: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .form-input:focus {
            outline: none;
            border-color: #FD79A8;
            box-shadow: 0 0 0 3px rgba(253, 121, 168, 0.1);
            background: white;
        }

        .input-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #E1306C;
            font-size: 1.2rem;
        }

        .toggle-password {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #797D7F;
            cursor: pointer;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .toggle-password:hover {
            color: #FD79A8;
        }

        /* Form Grid */
        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(135deg, #E1306C, #C13584);
            border: none;
            border-radius: 15px;
            color: white;
            font-size: 1.1rem;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(225, 48, 108, 0.1);
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
        }

        /* Form Footer */
        .form-footer {
            text-align: center;
            margin-top: 30px;
            color: #797D7F;
            font-size: 0.95rem;
        }

        .form-footer a {
            color: #E1306C;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-footer a:hover {
            color: #FD79A8;
            text-decoration: underline;
        }

        .forgot-link {
            text-align: right;
            margin: -10px 0 20px 0;
        }

        .forgot-link a {
            color: #E1306C;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .forgot-link a:hover {
            text-decoration: underline;
        }

        /* Error & Success Messages */
        .error-message {
            color: #e74c3c;
            font-size: 0.85rem;
            margin-top: 8px;
            display: block;
            padding-left: 5px;
        }

        .success-message {
            color: #2ecc71;
            font-size: 0.85rem;
            margin-top: 8px;
            display: block;
            padding-left: 5px;
            font-weight: 500;
        }

        /* Security Badge */
        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-top: 10px;
            backdrop-filter: blur(10px);
        }

        /* Floating Animation */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* Modal Styles */
        .modal-content {
            border-radius: 20px;
            border: none;
            box-shadow: 0 20px 50px rgba(225, 48, 108, 0.15);
        }

        .modal-header {
            background: linear-gradient(135deg, #E1306C, #C13584);
            color: white;
            border-radius: 20px 20px 0 0;
            padding: 20px 30px;
            border: none;
        }

        .modal-title {
            font-weight: 600;
        }

        .modal-body {
            padding: 30px;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .auth-container {
                flex-direction: column;
            }

            .brand-section {
                padding: 40px 20px;
            }

            .form-section {
                padding: 40px 30px;
            }

            .form-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .brand-section {
                min-height: auto;
            }
        }

        @media (max-width: 768px) {
            .auth-wrapper {
                padding: 10px;
            }

            .brand-title {
                font-size: 2.2rem;
            }

            .form-title {
                font-size: 1.8rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 480px) {
            .form-section {
                padding: 30px 20px;
            }

            .brand-section {
                padding: 30px 15px;
            }

            .tab-btn {
                font-size: 1rem;
            }
        }