/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 17 2025 | 17:24:15 */
.custom-form-wrapper {
        --c-text: rgb(50, 50, 80);
        --c-bg: rgb(252, 252, 252);
        --c-outline: rgb(255, 255, 255);
        --c-button: #4facfe;
        display: flex;
        align-items: center;
        gap: 0.5em;
        position: relative;
        max-width: 500px;
        color: black;
        justify-self: center;
        margin-bottom: 30px;
      	margin: auto;
    }

    .custom-input-field {
        max-width: 60%;
        position: relative;
        flex-grow: 1;
    }

    .custom-textbox {
        background-color: rgb(255, 255, 255);
        padding: 20px 40px !important;
        border-radius: 7px;
        border: 1px solid var(--c-border, currentColor);
        color: var(--c-text);
        font-size: 16px !important;
        width: 100% !important;
        outline: 1px solid transparent;
        outline-offset: 2px;
        transition: outline-color 0.3s ease, outline-offset 0.3s ease, border-color 0.3s ease;
        padding-left: 6em !important;
    }

    .custom-prefix {
        position: absolute;
        left: 0.75em;
        top: 50%;
        transform: translateY(-50%);
        color: gray;
        pointer-events: none;
        z-index: 2;
        transition: color 0.3s ease;
        font-size: 16px;
    }

   .custom-textbox.invalid-input {
       border-color: rgb(230, 85, 60);
       --c-outline: rgb(230, 85, 60);
   }

    .custom-textbox:is(:focus, :focus-visible) {
        outline: 2px solid var(--c-outline, var(--c-button));
        transition: outline-color 0.15s cubic-bezier(.2,.7,.7,1.2), outline-offset 0.15s cubic-bezier(.2,.7,.7,1.2);
        outline-offset: 2px;
    }

    .custom-textbox::placeholder {
        transform: translateX(-0.5em);
        transition: transform 0.3s ease;
        opacity: 0.6;
    }

    .custom-textbox:is(:focus, :focus-visible)::placeholder {
      transform: translateX(0em);
       opacity: 0.4;
    }

    .custom-action-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0px;
        background-color: var(--c-button);
        color: white;
        padding: 18px 40px;
        border-radius: 15px;
        font-size: 18px;
        font-weight: 400 !important;
        white-space: nowrap;
        text-shadow: -1px 2.2px 3px rgba(0, 0, 0, 0.5);
        border: 2px solid transparent;
        text-decoration: none;
        cursor: pointer;
        transition: gap 0.3s ease;
    }

    .btn-icon {
        width: 0;
        opacity: 0;
        transition: width 0.3s ease, opacity 0.2s ease;
        stroke: white;
    }

    .custom-action-btn:hover {
        gap: 10px;
    }

    .custom-action-btn:hover .btn-icon {
        width: 17px;
        opacity: 1;
    }

    .custom-btn-wrap {
        display: flex;
    }

    .custom-error {
        display: none;
        margin-top: 5px;
        color: red !important;
        font-size: 14px;
        position: absolute;
        bottom: -25px;
        left: 0;
        width: 100%;
    }
  
    @media screen and (max-width: 1024px) {
        .custom-form-wrapper {
            flex-direction: column;
            gap: 0.75em;
        }

        .custom-input-field {
            max-width: 100%;
            width: 100%;
        }

        .custom-textbox {
            padding: 15px 40px !important;
            font-size: 14px !important;
            padding-left: 6em !important;
        }

        .custom-prefix {
            font-size: 14px;
        }

        .custom-btn-wrap {
            justify-content: center;
            width: 100%;
        }

        .custom-action-btn {
            padding: 15px 40px;
            font-size: 14px;
            gap: 10px;
        }
        
        .custom-action-btn .btn-icon {
          display: none;
        }

        .custom-action-btn:hover {
            gap: 10px;
        }

        .custom-action-btn:hover .btn-icon {
            opacity: 1;
            transform: translateX(5px);
            width: auto;
        }
        
        .custom-error {
            position: static;
            text-align: center;
            margin-top: -10px;
            order: 1;
        }

        .custom-input-field {
            order: 0;
        }

        .custom-btn-wrap {
            order: 2;
        }
    }
    

    @media screen and (max-width: 480px) {
        .custom-form-wrapper {
            max-width: 90%; 
        }

        .custom-input-field {
            max-width: 100%;
        }

        .custom-action-btn {
            width: 80%;
            justify-content: center;
        }
    }