 
          body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: radial-gradient(circle, rgba(255,156,59,1) 0%, rgba(1,152,181,1) 100%)!important;
            font-family: Arial, sans-serif;
        }

       
        .login-container {
            background: rgba(255, 255, 255, 0.9);
            padding: 25px; 
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            text-align: center;
            width: 300px; 
        }

      
        .login-container img {
            width: 180px;
            object-fit: cover;
            margin-bottom: 15px;
        }

       
        label {
            color: #cb8f17;
            font-size: 14px;
            font-weight: bold;
            display: block;
            text-align: left;
            margin: 10px 0 3px;
        }

      
        .login-container input {
            width: 100%;
            padding: 8px;
            border: none;
            border-bottom: 2px solid #cb8f17;
            font-size: 16px; 
            outline: none;
            background: transparent;
            color: black;
        }

       
        .btn-login {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            background: linear-gradient(45deg, rgba(255,156,59,1), rgba(1,152,181,1));
            color: black;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            margin-top: 15px;
        }

        .btn-login:hover {
            background: linear-gradient(45deg, rgba(1,152,181,1), rgba(255,156,59,1));
            transform: scale(1.05);
        }

      
        #error {
            color: red;
            font-size: 12px;
        }
        
        
        
        

    