
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        a{
            text-decoration:none;
            color:white;
        }

        .login-container {
            display: flex;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            max-width: 1000px;
            width: 100%;
        }

        /* Left Side - Image */
        .login-image {
            flex: 1;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%23e0f2fe" width="800" height="600"/><rect fill="%23bae6fd" x="0" y="400" width="800" height="200" rx="20"/></svg>') center/cover;
            min-height: 600px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #e0f2fe;
        }

        .pharmacy-illustration {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Placeholder for pharmacy image */
        .image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, #bae6fd 0%, #7dd3fc 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            color: white;
        }

        /* Right Side - Form */
        .login-form-container {
            flex: 1;
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
        }

        .logo-section {
            text-align: center;
            margin-bottom: 40px;
        }
        .logo-image{
            width:64px;
        }
  
        .welcome-text {
            color: #9ca3af;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .company-name {
            font-size: 32px;
            font-weight: bold;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 15px 45px 15px 15px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            background: #f9fafb;
        }

        .form-input:focus {
            outline: none;
            border-color: #6366f1;
            background: white;
            box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
        }

        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 14px;
        }

        .signin-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .signin-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
        }

        .signin-btn:active {
            transform: translateY(0);
        }

        /* Footer */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #6b7280;
        }

        .footer-left a {
            color: #6366f1;
            text-decoration: none;
            font-weight: 600;
        }

        .footer-right {
            color: #9ca3af;
        }

        @media (max-width: 768px) {
            .login-container {
                flex-direction: column;
            }

            .login-image {
                min-height: 200px;
            }

            .login-form-container {
                padding: 40px 30px;
            }
        }
