 /* General styles */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        /* Default Background for PC */
        body {
            background: linear-gradient(to right, #0a0f43, #E3F2FD);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Login box (default for PC) */
        .login-container {
            background: white;
            padding: 50px 40px;
            border-radius: 12px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
            width: 500px;
            height: 800px;
            display: flex;
            flex-direction: column;
            justify-content: center; /* Centering elements */
            align-items: center;
        }

        /* Logo */
        .logo {
            width: 120px;
            margin-bottom: 20px;
        }

        .login-container h2 {
            margin-bottom: 30px;
            color: #333;
            font-size: 28px;
        }

        .input-group {
            margin-bottom: 30px;
            text-align: left;
            width: 100%;
        }

        .input-group label {
            display: block;
            font-size: 16px;
            color: #555;
            font-weight: bold;
        }

        .input-group input {
            width: 100%;
            padding: 18px;
            border: 1px solid #ccc;
            border-radius: 6px;
            margin-top: 8px;
            font-size: 18px;
        }

        /* Remember me & Forgot Password */
        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            width: 101%;
            margin-bottom: 30px;
        }

        .options label {
            flex: 1;
        }

        .options a {
            text-decoration: none;
            color: #2196F3;
            font-weight: bold;
            padding-left: 30px;
        }

        .options a:hover {
            text-decoration: underline;
        }

        /* Login Button */
        .login-btn {
            width: 100%;
            background: #2196F3;
            color: white;
            padding: 18px;
            border: none;
            border-radius: 6px;
            font-size: 20px;
            cursor: pointer;
            font-weight: bold;
        }

        .login-btn:hover {
            background: #1976D2;
        }

        /* FULLSCREEN MOBILE VERSION */
        @media screen and (max-width: 768px) {
            body {
                background: white;
                height:100%;
            }
            .login-container {
                width: 100%;
                height: 100%;
                border-radius: 0;
                box-shadow: none;
            }
            
             /* Remember me & Forgot Password */
        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            width: 105%;
            margin-bottom: 30px;
        }
        }
        .required {
            border: 1px solid #ccc; /* Default border */
            transition: box-shadow 0.3s ease-in-out;
          }