* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: scroll;
        position: relative;
    }

    /* Animated background elements */
    .bg-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .shape {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 20s infinite linear;
    }

    .shape:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        width: 120px;
        height: 120px;
        top: 60%;
        right: 10%;
        animation-delay: 5s;
    }

    .shape:nth-child(3) {
        width: 60px;
        height: 60px;
        bottom: 20%;
        left: 20%;
        animation-delay: 10s;
    }

    .shape:nth-child(4) {
        width: 100px;
        height: 100px;
        top: 10%;
        right: 30%;
        animation-delay: 15s;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        33% { transform: translateY(-30px) rotate(120deg); }
        66% { transform: translateY(20px) rotate(240deg); }
    }

    .login-container {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 22px;
        padding: 38px 30px;
        width: 400px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        position: relative;
        z-index: 1;
        animation: slideUp 0.8s ease-out;
        margin-top: 5px;
        margin-bottom: 5px;
        overflow-y: auto;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .logo {
        text-align: center;
        margin-bottom: 32px;
    }

    .logo-icon {
        width: 54px;
        height: 54px;
        background: linear-gradient(135deg, #eaf1f5, #e6d2ef);
        /* background: linear-gradient(135deg, #ff6b6b, #ee5a24); */
        border-radius: 13px;
        margin: 0 auto 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: rgba(102, 45, 145, 0.9);
         /* rgb(109, 28, 240); #662d91*/
        font-weight: bold;
        box-shadow: 0 8px 32px rgba(154, 198, 244, 0.3);
        animation: glow 2s ease-in-out infinite alternate;
    }

    @keyframes glow {
        from { box-shadow: 0 8px 32px rgba(136, 176, 241, 0.3); }
        to { box-shadow: 0 8px 40px rgba(132, 177, 239, 0.5); }

         /* from { box-shadow: 0 8px 32px rgba(255, 107, 107, 0.3); }
        to { box-shadow: 0 8px 40px rgba(255, 107, 107, 0.5); } */
    }

    .logo h1 {
        color: white;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .logo p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 16px;
        font-weight: 400;
    }

    .form-group {
        margin-bottom: 20px;
        position: relative;
    }

    .form-group label {
        display: block;
        color: rgba(255, 255, 255, 0.9);
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .input-wrapper {
        position: relative;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 11px;
        color: white;
        font-size: 15px;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .form-group input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .form-group input:focus {
        outline: none;
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .password-toggle {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .password-toggle:hover {
        color: white;
    }

    .forgot-password {
        text-align: right;
        margin-bottom: 25px;
    }

    .forgot-password a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s ease;
    }

    .forgot-password a:hover {
        color: white;
    }

    .login-btn {
        width: 100%;
        padding: 13px;
        background: linear-gradient(135deg, #eaf1f5, #e6d2ef);
        /* background: linear-gradient(135deg, #ff6b6b, #ee5a24); */
        border: none;
        border-radius: 12px;
        /* color: white; */
        color: rgb(109, 28, 240);
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .login-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(135, 112, 201, 0.4);
    }

    .login-btn:active {
        transform: translateY(0);
    }

    .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: left 0.5s;
    }

    .login-btn:hover::before {
        left: 100%;
    }

    .divider {
        text-align: center;
        margin: 20px 0;
        position: relative;
    }

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: rgba(255, 255, 255, 0.2);
    }

    .divider span {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        padding: 0 16px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .social-login {
        display: flex;
        gap: 12px;
        margin-bottom: 32px;
        display: none;
    }

    .social-btn {
        flex: 1;
        padding: 12px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .social-btn:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
    }

    .signup-link {
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        font-size: 14px;
    }

    .signup-link a {
        color: white;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .signup-link a:hover {
        text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    }

    @media (max-width: 480px) {
        .login-container {
            width: 90%;
            padding: 32px 24px;
            margin: 20px;
        }
    }

    