

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-color: #fafafa;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background: linear-gradient(135deg, #e8b9d6, #bc6c8c); /* Soft gradient background */
            overflow: hidden;
        }

        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
        }

        .logo-section {
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }

        .logo-section .logo {
            font-size: 48px;
            font-weight: bold;
            color: rgb(103, 14, 77);
            letter-spacing: 2px;
            text-align: center;
            text-transform: uppercase;
        }

        .logo-section .logo span {
            color: rgb(245, 245, 245);
        }

        .image-section {
            width: 100%;
            max-width: 500px;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.15;
            z-index: 1;
        }

        .login-container {
            background-color: white;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            padding: 40px;
            width: 100%;
            max-width: 380px;
            position: relative;
            z-index: 2;
        }

        h1 {
            font-size: 30px;
            font-weight: bold;
            color: #4e73df;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #555;
            margin-bottom: 5px;
        }

        input[type="text"], input[type="password"] {
            width: 100%;
            padding: 12px;
            margin-top: 5px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 16px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        input[type="text"]:focus, input[type="password"]:focus {
            border-color: #4e73df;
        }

        .submit-btn {
            width: 100%;
            padding: 14px;
            background-color: #d466a4;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .submit-btn:hover {
            background-color: #2e59d9;
        }

        .signup-link {
            margin-top: 20px;
            font-size: 14px;
            color: #666;
        }

        .signup-link a {
            color: #4e73df;
            text-decoration: none;
            font-weight: 600;
        }

        .signup-link a:hover {
            text-decoration: underline;
        }

        .forgot-password {
            text-align: right;
            font-size: 12px;
            color: #666;
        }

        .forgot-password a {
            color: #4e73df;
            text-decoration: none;
        }

        .forgot-password a:hover {
            text-decoration: underline;
        }

        /* Image styling */
        .background-image {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 70%;
            max-width: 600px;
            transform: translate(-50%, -50%);
            opacity: 0.1;
        }
        #hello{
            color: #3f102b;
        }

        /* Mobile responsiveness */
        @media (max-width: 480px) {
            .logo-section .logo {
                font-size: 32px;
            }
            h1 {
                font-size: 24px;
            }
            .login-container {
                padding: 20px;
                width: 80%;
            }
        }
