* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        ::-webkit-scrollbar {
            display: none !important;
        }

        body {
            min-height: 100vh;
            background: #000;
        }

        
        .form-control {
            width: 100%;
            padding: 0.75rem 0.75rem 0.75rem 2.5rem;
            border: 0px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 10px 10px 0 0;
            transition: all 0.3s ease;
            height: 50px;
            background: rgba(0,0,0,0.3);
            border-bottom: 2px solid rgba(183, 28, 28);

        }

        .login-form {
            margin: 2rem 0 1rem 0;
            padding: 1rem;
            border-radius: 5px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
            border: none;
        }

        .form-control:hover {
            background: #111;
        }

        .form-control:focus {
            outline: none;
            border-color: rgba(183, 28, 28);
            background: #222;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
        }

        .form-control::placeholder {
            color: #64748b;
            font-size: 15px;
        }

        select {
            height: 50px;
            width: 100%;
            background: rgba(183, 28, 28, 0.1);
        }

        ::-webkit-scrollbar {
            display: none;
        }


        .navbar {
            background: linear-gradient(90deg, #111, #222, #333, #222, #111, #000);
            padding: 1rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
        }

        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-text img {
            width: 15%;
            margin-left: 40%;
            border-radius: 40px;

        }

        .container {
            width: 90%;
            max-width: 48rem;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        

        .login-form:hover {
            transform: translateY(-5px);
        }

        .welcome-text {
            text-align: center;
            margin-bottom: 2rem;
        }

        .welcome-text h1 {
            font-size: 1.875rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 0.5rem;
        }

        .welcome-text p {
            color: #94a3b8;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            color: #fff;
        }

        .input-container {
            position: relative;
        }

        .input-container svg {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(183, 28, 28);
        }

        
        .forgot-password {
            text-align: right;
            margin-bottom: 1.5rem;
        }

        .forgot-password a {
            color: rgba(183, 28, 28);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .forgot-password a:hover {
            color: #60a5fa;
            text-decoration: underline;
        }

        .btn {
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 8px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: rgba(183, 28, 28);
            color: #fff;
            width: 100%;
        }

        .btn-primary:hover {
            background: rgba(183, 28, 28, 0.7);
            transform: translateY(-2px);
        }

        .apply-section {
            margin-top: 1.5rem;
            padding: 1.5rem;
            background: #000;
            background-image: radial-gradient(circle at 1px 1px, rgba(183, 28, 28) 1px, transparent 0);
            text-align: center;
            border-radius: 12px;
            background-size: 20px 20px;
        }

        .apply-text {
            color: #fff;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .btn-outline {
            background: transparent;
            border: 3px solid rgba(183, 28, 28);
            color: rgba(183, 28, 28);
            width: 100%;
            max-width: 300px;
        }

        .btn-outline:hover {
            background: rgba(183, 28, 28, 0.2);
            transform: translateY(-2px);
        }

        .support-info {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: #94a3b8;
            font-size: 0.875rem;
        }

        .footer {
            background: #111;
            color: #fff;
            margin-top: auto;
            padding: 30px;
            backdrop-filter: blur(10px);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info {
            display: flex;
            gap: 15px;
            margin-bottom: 10px;
        }

        .contact-info a {
            color: rgba(183, 28, 28);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: rgba(183, 28, 28, 0.5);
        }

        .legal-text {
            font-size: 12px;
            margin-bottom: 30px;
            opacity: 0.8;
            line-height: 30px;
            color: #999;
        }

        .copyright {
            text-align: center;
            font-size: 14px;
            opacity: 0.8;
            color: #94a3b8;
        }

        @media (min-width: 768px) {
            .form-group {
                display: flex;
                align-items: center;
                gap: 1.5rem;
            }

            .form-group label {
                flex: 0 0 25%;
                text-align: right;
            }

            .input-container {
                flex: 1;
            }

            .forgot-password {
                margin-left: calc(25% + 1.5rem);
            }

            .login-button-container {
                margin-left: calc(25% + 1.5rem);
            }

            .btn-primary {
                width: auto;
            }
        }

        @media (max-width: 767px) {
            .container {
                width: 100%;
                padding: 0 1rem;
            }

            .login-form {
                padding: 1.5rem;
            }

            .logo-text img {
            width: 35%;
            margin-left: 30%;
            border-radius: 40px;

        }

            .form-group label {
                display: block;
                margin-bottom: 0.5rem;
                color: #fff;
            }

            .btn {
                width: 100%;
            }
        }

.about-section {
    padding: 100px 0;
    background: linear-gradient(rgba(16, 24, 32, 0.98), rgba(16, 24, 32, 0.98));
    color: #fff;
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2196f3;
}

.lead {
    font-size: 1.2rem;
    color: #a0aec0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.about-feature i {
    font-size: 2rem;
    color: #2196f3;
    margin-top: 5px;
}

.about-feature h3 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.about-feature p {
    color: #a0aec0;
    margin: 0;
    line-height: 1.6;
}

.about-image {
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .lead {
        text-align: center;
    }
}

@media screen and (max-width: 568px) {
    .about-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .about-feature i {
        margin-bottom: 15px;
    }
}
