     body {
           font-family: 'Poppins';
             background-color: white;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #333;
        }
         .output{
            position: relative;
            width: 100%;
            border-radius: 5px;
            margin-top: 10px;
            height: auto;
            left: 0%;
            background-color: whitesmoke;
            display: none;
        }
        .msg{
            color: red;
            background-color: transparent;
        }
        .login-container {
            background: white;
            padding: 2rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 400px;
            text-align: center;
        }
        .login-container h1 {
            margin-bottom: 1.5rem;
            color: #1e40af;
        }
        form {
            display: flex;
            flex-direction: column;
        }
        label {
            margin-bottom: 0.5rem;
            color: #374151;
            text-align: left;
        }
        input[type="text"],
        input[type="password"] {
            padding: 0.75rem;
            margin-bottom: 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.25rem;
            font-size: 1rem;
        }
        input[type="text"]:focus,
        input[type="password"]:focus {
            outline: none;
            border-color: #3b82f6;
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
        }
        button {
            padding: 0.75rem;
            background: #3b82f6;
            color: white;
            border: none;
            border-radius: 0.25rem;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }
        button:hover {
            background: #2563eb;
        }
        .forgot-password {
            margin-top: 1rem;
            font-size: 0.875rem;
        }
        .forgot-password a {
            color: #3b82f6;
            text-decoration: none;
        }
        .forgot-password a:hover {
            text-decoration: underline;
        }
         .register-container .logo{
        display: none;
      }
       
        @media (max-width: 480px) {
            .login-container {
                margin: 1rem;
                padding: 1.5rem;
            }
            .register-container .logo{
                    display: block;
                    width: 300px;
                    height: 200px;
                    margin-left: calc(50% - 150px);
                }
        }