* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1a3a6c;
            --primary-dark: #0d2a4a;
            --secondary: #e67e22;
            --accent: #27ae60;
            --accent-dark: #219653;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #95a5a6;
            --transition: all 0.3s ease;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background: linear-gradient(to bottom, #f5f7fa, #e6e9ef);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            animation: fadeInLeft 1s ease;
        }

        .logo-img {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, var(--secondary), #d35400);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 800;
            letter-spacing: 0.5px;
        }

        .logo-text p {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
            transition: var(--transition);
        }

        nav a:hover {
            color: var(--secondary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--secondary);
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(26, 58, 108, 0.8), rgba(26, 58, 108, 0.9)), url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&auto=format&fit=crop&w=1080&q=80');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, transparent 20%, rgba(0,0,0,0.5) 100%);
            z-index: 0;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        .btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }

        .btn:hover {
            border-color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .btn:hover::before {
            width: 100%;
        }

        /* Floating elements */
        .floating {
            position: absolute;
            animation: float 6s ease-in-out infinite;
        }

        .floating:nth-child(1) {
            top: 15%;
            left: 10%;
            font-size: 2rem;
            opacity: 0.1;
        }

        .floating:nth-child(2) {
            top: 25%;
            right: 10%;
            font-size: 1.5rem;
            opacity: 0.15;
        }

        .floating:nth-child(3) {
            bottom: 20%;
            left: 15%;
            font-size: 1.8rem;
            opacity: 0.12;
        }

        .floating:nth-child(4) {
            bottom: 30%;
            right: 15%;
            font-size: 1.3rem;
            opacity: 0.18;
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .section-title p {
            max-width: 700px;
            margin: 1rem auto 0;
            color: var(--gray);
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            padding: 2.5rem 1.5rem;
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .feature-card:nth-child(1) { animation-delay: 0.1s; }
        .feature-card:nth-child(2) { animation-delay: 0.2s; }
        .feature-card:nth-child(3) { animation-delay: 0.3s; }
        .feature-card:nth-child(4) { animation-delay: 0.4s; }
        .feature-card:nth-child(5) { animation-delay: 0.5s; }
        .feature-card:nth-child(6) { animation-delay: 0.6s; }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary), #2c5282);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
            transition: var(--transition);
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(45deg, var(--secondary), #e74c3c);
            transform: rotateY(360deg);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Mess Management Section */
        .mess-section {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }

        .mess-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 40px;
            align-items: center;
        }

        .mess-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow-hover);
            height: 400px;
            background: linear-gradient(45deg, var(--primary), #2c5282);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            position: relative;
            transform: translateX(-30px);
            opacity: 0;
            animation: fadeInRight 0.8s ease forwards;
        }

        .mess-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&auto=format&fit=crop&w=1080&q=80') no-repeat center center/cover;
            opacity: 0.8;
        }

        .mess-content {
            transform: translateX(30px);
            opacity: 0;
            animation: fadeInLeft 0.8s ease forwards;
        }

        .mess-content h3 {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .mess-content p {
            margin-bottom: 1.5rem;
        }

        .menu-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .menu-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #ddd;
            display: flex;
            justify-content: space-between;
            transition: var(--transition);
        }

        .menu-list li:hover {
            background: rgba(230, 126, 34, 0.05);
            transform: translateX(5px);
        }

        .menu-list li:last-child {
            border-bottom: none;
        }

        /* Notifications Section */
        .notification-container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .notification-header {
            background: var(--primary);
            color: white;
            padding: 1.2rem;
            text-align: center;
            font-weight: 600;
            font-size: 1.3rem;
            position: relative;
            overflow: hidden;
        }

        .notification-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.2) 100%);
            transform: translateX(-100%);
            animation: shine 2s infinite;
        }

        .notification-list {
            max-height: 400px;
            overflow-y: auto;
        }

        .notification-item {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
            display: flex;
            gap: 15px;
            transition: var(--transition);
            cursor: pointer;
        }

        .notification-item:hover {
            background-color: #f9f9f9;
            transform: translateX(5px);
        }

        .notification-icon {
            color: var(--secondary);
            font-size: 1.2rem;
            min-width: 30px;
            transition: var(--transition);
        }

        .notification-item:hover .notification-icon {
            transform: scale(1.2);
        }

        .notification-content h4 {
            font-size: 1.1rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .notification-date {
            font-size: 0.85rem;
            color: var(--gray);
        }

        /* Committee Section */
        .committee-section {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .committee-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://www.transparenttextures.com/patterns/45-degree-fabric-light.png');
            opacity: 0.05;
        }

        .committee-section .section-title h2 {
            color: white;
        }

        .committee-section .section-title h2::after {
            background: var(--secondary);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-member {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            padding: 2rem;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .team-member:nth-child(1) { animation-delay: 0.1s; }
        .team-member:nth-child(2) { animation-delay: 0.2s; }
        .team-member:nth-child(3) { animation-delay: 0.3s; }
        .team-member:nth-child(4) { animation-delay: 0.4s; }

        .team-member:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        }

        .member-img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            background: linear-gradient(45deg, var(--secondary), #e74c3c);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .member-img::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
            transform: rotate(45deg) translate(-20px, 100px);
            animation: shineEffect 3s infinite;
        }

        .member-name {
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

        .member-role {
            color: var(--secondary);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .contact-info {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Events Section */
        .events-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .event-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            position: relative;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .event-card:nth-child(1) { animation-delay: 0.1s; }
        .event-card:nth-child(2) { animation-delay: 0.2s; }
        .event-card:nth-child(3) { animation-delay: 0.3s; }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .event-img {
            height: 200px;
            background: linear-gradient(45deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .event-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
            transform: translateX(-100%);
            animation: shine 3s infinite;
        }

        .event-content {
            padding: 1.5rem;
        }

        .event-date {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .event-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .event-details {
            display: flex;
            gap: 15px;
            margin-top: 1rem;
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Sports Section */
        .sports-section {
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
        }

        .sports-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .sport-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            transform: translateY(20px);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }

        .sport-card:nth-child(1) { animation-delay: 0.1s; }
        .sport-card:nth-child(2) { animation-delay: 0.2s; }
        .sport-card:nth-child(3) { animation-delay: 0.3s; }

        .sport-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .sport-img {
            height: 200px;
            background: linear-gradient(45deg, #9b59b6, #3498db);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
            position: relative;
            overflow: hidden;
        }

        .sport-img::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
            transform: translateX(-100%);
            animation: shine 3s infinite;
        }

        .sport-content {
            padding: 1.5rem;
        }

        .sport-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        /* Gallery Section */
        .gallery-section {
            background: linear-gradient(135deg, var(--primary-dark), #1a3a6c);
            color: white;
        }

        .gallery-section .section-title h2 {
            color: white;
        }

        .gallery-section .section-title h2::after {
            background: var(--secondary);
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transform: scale(0.9);
            opacity: 0;
            animation: fadeInScale 0.8s ease forwards;
        }

        .gallery-item:nth-child(1) { animation-delay: 0.1s; }
        .gallery-item:nth-child(2) { animation-delay: 0.2s; }
        .gallery-item:nth-child(3) { animation-delay: 0.3s; }
        .gallery-item:nth-child(4) { animation-delay: 0.4s; }
        .gallery-item:nth-child(5) { animation-delay: 0.5s; }
        .gallery-item:nth-child(6) { animation-delay: 0.6s; }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 2rem;
            color: white;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary), var(--accent));
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 0 2rem;
        }

        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
        }

        .contact-info-list {
            list-style: none;
        }

        .contact-info-list li {
            margin-bottom: 15px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .contact-info-list i {
            color: var(--secondary);
            margin-top: 4px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }

        @keyframes shine {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(200%);
            }
        }

        @keyframes shineEffect {
            0% {
                transform: rotate(45deg) translate(-20px, 100px);
            }
            100% {
                transform: rotate(45deg) translate(100px, -20px);
            }
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                gap: 0;
                padding: 1rem 0;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            }

            nav ul.active {
                display: flex;
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

            nav ul li a {
                display: block;
                padding: 1rem;
            }

            .mobile-toggle {
                display: block;
            }

            .hero h2 {
                font-size: 2.3rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .mess-container {
                grid-template-columns: 1fr;
            }

            .mess-image {
                height: 300px;
            }
        }

        @media (max-width: 576px) {
            .header-container {
                padding: 0 1rem;
            }

            .logo-text h1 {
                font-size: 1.5rem;
            }

            .hero {
                height: 90vh;
            }

            .hero h2 {
                font-size: 2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            section {
                padding: 4rem 1rem;
            }
        }

/* Login Section */
.login-section {
    padding: 5rem 2rem;
    background: linear-gradient(to bottom, #f5f7fa, #e6e9ef);
}

.login-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.8s ease forwards;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}



.user-type-selection {
    margin-top: 2rem;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group input[type="radio"] {
    display: none;
}

.radio-group label {
    background: #f0f0f0;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #ddd;
    font-weight: 500;
    color: var(--dark);
}

.radio-group input[type="radio"]:checked + label {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(26, 58, 108, 0.2);
}

.login-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    background: linear-gradient(45deg, var(--secondary), #e74c3c); /* Gradient background */
    border: none; /* Remove default border */
    border-radius: 30px; /* More rounded corners */
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease; /* Smooth transitions for all properties */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Initial shadow */
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2); /* White overlay for shine effect */
    transform: skewX(-30deg);
    transition: all 0.7s ease;
    z-index: -1;
}

.login-btn:hover {
    transform: translateY(-3px); /* Lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.login-btn:hover::before {
    left: 100%; /* Shine effect on hover */
}

.login-btn:active {
    transform: translateY(0); /* Press down effect on click */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}



/* Responsive adjustments for login section */
@media (max-width: 576px) {
    .login-container {
        padding: 2rem 1.5rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .radio-group label {
        width: 100%;
        text-align: center;
    }
}