 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* Animated background elements */
.bg-bubbles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

    .bg-bubbles li {
        position: absolute;
        list-style: none;
        display: block;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.15);
        bottom: -160px;
        border-radius: 50%;
        animation: square 25s infinite;
        transition-timing-function: linear;
    }

        .bg-bubbles li:nth-child(1) {
            left: 10%;
            animation-delay: 0s;
            width: 80px;
            height: 80px;
        }

        .bg-bubbles li:nth-child(2) {
            left: 20%;
            animation-delay: 2s;
            animation-duration: 17s;
            width: 60px;
            height: 60px;
        }

        .bg-bubbles li:nth-child(3) {
            left: 25%;
            animation-delay: 4s;
            width: 120px;
            height: 120px;
        }

        .bg-bubbles li:nth-child(4) {
            left: 40%;
            animation-delay: 0s;
            animation-duration: 22s;
            width: 160px;
            height: 160px;
        }

        .bg-bubbles li:nth-child(5) {
            left: 70%;
            width: 100px;
            height: 100px;
        }

        .bg-bubbles li:nth-child(6) {
            left: 80%;
            animation-delay: 3s;
            width: 120px;
            height: 120px;
        }

        .bg-bubbles li:nth-child(7) {
            left: 32%;
            animation-delay: 7s;
            width: 80px;
            height: 80px;
        }

        .bg-bubbles li:nth-child(8) {
            left: 55%;
            animation-delay: 15s;
            animation-duration: 40s;
            width: 60px;
            height: 60px;
        }

        .bg-bubbles li:nth-child(9) {
            left: 25%;
            animation-delay: 2s;
            animation-duration: 40s;
            width: 40px;
            height: 40px;
        }

        .bg-bubbles li:nth-child(10) {
            left: 90%;
            animation-delay: 11s;
            width: 100px;
            height: 100px;
        }

@keyframes square {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 50%;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 20%;
    }
}

.login-container {
    display: flex;
    width: 1000px;
    max-width: 95%;
    height: auto;
    min-height: 600px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.illustration {
    flex: 1;
    background: linear-gradient(135deg, rgba(106, 17, 203, 0.7), rgba(37, 117, 252, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .illustration::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
        top: -100px;
        right: -100px;
    }

    .illustration::after {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
        bottom: -50px;
        left: -50px;
    }

.illustration-content {
    position: relative;
    z-index: 3;
    max-width: 80%;
}

.illustration h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.illustration p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.features {
    text-align: left;
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

    .feature i {
        font-size: 16px;
        margin-right: 10px;
        color: #ffdd40;
    }

.form-container {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    justify-content: center;
}

.logo-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(106, 17, 203, 0.3);
}
    .logo-icon img {
       width:80px;
    }
    .logo-icon i {
        font-size: 24px;
        color: white;
    }

.logo h1 {
    font-size: 28px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    text-align:center;
}

.form-header {
    margin-bottom: 16px;
    text-align: center;
}

    .form-header h2 {
        font-size: 20px;
        color: #04e000;
        margin-bottom: 10px;
        font-weight: 700;
    }

    .form-header p {
        color: #666;
        font-size: 14px;
    }
.text-danger1 {
    font-size: 11px;
    color: #f5f5f7;
    background-color: #ed1151;
    padding: 5px;  
    border-radius: 5px;
}
.form-group {
    margin-bottom: 25px;
    position: relative;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #555;
    }

.input-with-icon {
    position: relative;
}

    .input-with-icon i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #777;
        transition: color 0.3s;
    }

.form-control {
    width: 100%;
    padding: 12px 12px 12px 46px !important;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px !important;
    transition: all 0.3s;
    background: #f9f9f9 !important;
}

    .form-control:focus {
        border-color: #6a11cb;
        background: white;
        outline: none;
        box-shadow: 0 0 0 4px rgba(106, 17, 203, 0.1);
    }

        .form-control:focus + i {
            color: #6a11cb;
        }

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.remember {
    display: flex;
    align-items: center;
}

    .remember input {
        width: 18px;
        height: 18px;
        margin-right: 8px;
        accent-color: #6a11cb;
        cursor: pointer;
    }

    .remember label {
        color: #555;
        cursor: pointer;
    }

.forgot-password {
    color: #6a11cb;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

    .forgot-password::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: #6a11cb;
        transition: width 0.3s;
    }

    .forgot-password:hover::after {
        width: 100%;
    }

.login-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 7px 20px rgba(106, 17, 203, 0.3);
}

    .login-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;
    }

    .login-btn:hover::before {
        left: 100%;
    }

    .login-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(106, 17, 203, 0.4);
    }

    .login-btn:active {
        transform: translateY(-1px);
    }

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #999;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        border-bottom: 1px solid #e0e0e0;
    }

    .divider span {
        padding: 0 15px;
        font-size: 14px;
    }

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

    .social-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.05);
        opacity: 0;
        transition: opacity 0.3s;
    }

    .social-btn:hover::after {
        opacity: 1;
    }

    .social-btn i {
        font-size: 22px;
        transition: transform 0.3s;
        z-index: 2;
    }

    .social-btn:hover i {
        transform: scale(1.2);
    }

    .social-btn.google {
        background: white;
        color: #DB4437;
    }

    .social-btn.facebook {
        background: white;
        color: #4267B2;
    }

    .social-btn.twitter {
        background: white;
        color: #1DA1F2;
    }

    .social-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

.signup-link {
    text-align: center;
    margin-top: 5px;
    color: #666;
    font-size: 14px;
}

    .signup-link a {
        color: #6a11cb;
        text-decoration: none;
        font-weight: 600;
        position: relative;
    }

        .signup-link a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #6a11cb;
            transition: width 0.3s;
        }

        .signup-link a:hover::after {
            width: 100%;
        }

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        width: 95%;
        height: auto;
    }

    .illustration h2 {
        font-size: 28px;
    }

    .illustration p {
        font-size: 16px;
    }
}

@media (max-width: 900px) {
    .login-container {
        max-width: 500px;
    }

    .illustration {
        display: none;
    }

    .form-container {
        padding: 50px 40px;
        border-radius: 25px;
        width: 100%;
    }

    .logo {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 40px 30px;
    }

    .options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .social-login {
        gap: 15px;
    }

    .social-btn {
        width: 50px;
        height: 50px;
    }

        .social-btn i {
            font-size: 20px;
        }

    .logo h1 {
        font-size: 20px;
    }

    .form-header h2 {
        font-size: 20px;
    }

    .login-btn {
        padding: 15px;
    }
}

@media (max-width: 360px) {
    .form-container {
        padding: 30px 20px;
    }

    .logo {
        margin-bottom: 20px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

        .logo-icon i {
            font-size: 20px;
        }

    .logo h1 {
        font-size: 18px;
    }

    .form-header {
        margin-bottom: 20px;
    }

        .form-header h2 {
            font-size: 18px;
        }

    .social-login {
        gap: 10px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
    }
}

