        .wrap-input100 {
            position: relative;
        }

        .input100 {
            padding-left: 40px !important;
        }

        .input-icon {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 16px;
        }

        .toggle-password {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #999;
            font-size: 16px;
            z-index: 10;
        }

        /* กล่องโปร่งใสแบบขุ่น */
        .wrap-login100 {
            max-width: 500px;
            height: 520px;
            /* ✅ ความสูงคงที่ */
            margin: auto;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 30;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.25);
        }

        .container-login100 {
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .login100-form-title {
            color: white;
            font-size: 24px;
            font-weight: bold;
        }

        .input100::placeholder {
            color: #ccc;
        }

        .logo {
            width: 100px;
            height: 100px;
            object-fit: cover;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            padding: 8px;
            margin-bottom: 1rem;
        }

        .input100 {
            max-width: 370px;
            /* 👈 ปรับความกว้าง */
            width: 100%;
            border-radius: 12px;
            border: 1px solid #ccc;
            padding: 12px 20px 12px 45px;
            box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
            background-color: #fff;
            transition: all 0.3s ease;
            margin: 0 auto;
            /* 👈 จัดให้อยู่ตรงกลาง */
            display: block;

        }

        .input100:focus {
            border-color: #007bff;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.4);
            background-color: #fff;
        }

        .wrap-input100 {
            margin-bottom: 20px;
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 28px;
            top: 50%;
            transform: translateY(-50%);
            color: #888;
            font-size: 18px;
            pointer-events: none;
        }

        .toggle-password {
            position: absolute;
            right: 28px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #888;
            font-size: 18px;
            z-index: 10;
        }

        .toggle-password:hover {
            color: #0099FFFF;
            /* เปลี่ยนสีเมื่อ hover */
        }

        .login100-form-btn {
            width: 100%;
            /* ลดความกว้างลงเหลือ 80% ของ container */
            max-width: 370px;
            /* ถ้าต้องการจำกัด max กว้าง */
            margin: 0 auto;
            /* จัดให้อยู่กลาง */
            display: block;
            /* ให้ margin:auto ทำงาน */
            /* ความสูงปุ่ม */
            padding: 6px 0;
            /* ลด padding ซ้ายขวาเหลือ 0 เพราะใช้ width เต็ม */
            font-size: 16px;
            border-radius: 10px;
            border: none;
            background-color: #007bff;
            color: white;
            transition: background-color 0.3s ease;
            /* กำหนดความสูงปุ่มตรง ๆ */
        }

        .login100-form-btn:hover {
            background-color: #0056b3;
        }

        .login100-form-title {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 20px;
            color: white;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }         