        body,
        html {
            height: 100%;
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background-color: #222;
        }


        .overlay {
            background-color: rgba(0, 0, 0, 0.6);
            position: absolute;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
        }

        .login-card {
            background: rgba(255, 255, 255, 0.95);
            padding: 2rem;
            border-radius: 10px;
            max-width: 420px;
            width: 100%;
            z-index: 1;
        }

        .logo img {
            width: 90px;
        }

        .form-control::placeholder {
            color: #999;
        }

        .form-group-custom {
            position: relative;
            /* margin-bottom: 1.5rem; */
        }

        .form-group-custom label {
            position: absolute;
            top: -10px;
            left: 15px;
            background: #fff;
            padding: 0 5px;
            font-size: 16px;
            color: #0A517F;
            font-weight: 500;
        }

        .form-group-custom input {
            border: 1px solid #0A517F;
            border-radius: 10px;
            padding: 14px 45px 14px 15px;
        }

        .form-group-custom input::placeholder {
            color: rgba(10, 81, 127, 0.6);
            font-size: 13px;
        }

        .form-group-custom .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #999;
            cursor: pointer;
        }

        .form-group-custom select {
            border: 1px solid #0A517F;
            border-radius: 10px;
            padding: 14px 45px 14px 15px;
        }

        .error-message {
            background: rgba(255, 0, 0, 0.1);
            color: #dc3545;
            padding: 10px;
            margin-bottom: 20px;
            border-radius: 6px;
            text-align: center;
        }

        @media (max-width: 480px) {
            .login-card {
                padding: 1.5rem;
            }
        }
        