@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */



 .phone-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.country-code {
  position: absolute;
  left: 12px;
  color: #666;
  pointer-events: none;
  font-size: 14px;
  padding-bottom: 11px;
}

#phone {
  padding-left: 45px; /* space for country code */
  height: 36px;
  font-size: 14px;
}

    form.partner-form {
        max-width: 600px;
        margin: 20px auto;
        padding: 25px;
        border: 1px solid #ccc;
        border-radius: 20px;
        font-family: Arial, sans-serif;
        background: #fff;
        margin-top: 400px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    form.partner-form h1 {
        text-align: center;
        margin-bottom: 20px;
        font-weight: 700;
    }

    form.partner-form .form-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        align-items: center;
    }

    form.partner-form .form-row label {
        flex: 1 1 40%;
        font-weight: 600;
        padding-right: 10px;
        white-space: nowrap;
    }

    form.partner-form .form-row input[type="text"],
    form.partner-form .form-row input[type="email"],
    form.partner-form .form-row input[type="number"],
    form.partner-form .form-row select,
    form.partner-form .form-row textarea {
        flex: 1 1 55%;
        padding: 6px 8px;
        border: 1px solid #ccc;
        border-radius: 25px;
        font-size: 14px;
    }

    form.partner-form .form-row input.is-invalid,
    form.partner-form .form-row select.is-invalid,
    form.partner-form .form-row textarea.is-invalid {
        border-color: red;
    }

    form.partner-form textarea {
        resize: vertical;
        min-height: 60px;
    }

    form.partner-form .upload-box {
        margin: 20px auto;
        width: 220px;
        height: 90px;
        border: 2px dashed #999;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        font-weight: 700;
        color: #555;
        text-align: center;
        transition: border-color 0.3s ease, color 0.3s ease;
    }

    form.partner-form .upload-box:hover {
        border-color: #555;
        color: #000;
    }

    form.partner-form .upload-box input[type="file"] {
        display: none;
    }

    form.partner-form .terms {
        margin: 20px 0;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    form.partner-form .terms input[type="checkbox"] {
        margin-right: 8px;
    }

    form.partner-form button[type="submit"] {
        width: 100%;
        padding: 12px 0;
        font-size: 18px;
        background-color: #000;
        color: #fff;
        border: none;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 700;
        transition: background-color 0.3s ease;
    }

    form.partner-form button[type="submit"]:hover {
        background-color: #333;
    }

    .error-message {
        color: red;
        font-size: 12px;
        margin-left: 40%;
        margin-top: -10px;
        margin-bottom: 10px;
    }

    .success-message {
        text-align: center;
        color: green;
        font-weight: 700;
        margin-bottom: 20px;
    }


    .phone-input-group {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
}

.phone-input-group .country-code {
    background: #f0f0f0;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    white-space: nowrap;
    min-width: 60px;
    text-align: center;
}

.country-code1 {
    background: #f0f0f0;
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-right: 0;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
    white-space: nowrap;
    min-width: 60px;
    text-align: center;
}

.phone-input-group input {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 0 6px 6px 0;
    min-width: 0; /* prevent overflow on small screens */
}

/* Mobile optimization */
@media (max-width: 480px) {
    .phone-input-group {
        flex-direction: row;
        align-items: stretch;
    }

    .phone-input-group .country-code {
        font-size: 13px;
        padding: 8px 10px;
    }

    .country-code1 {
        font-size: 13px;
        padding: 8px 10px;
    }

    .phone-input-group input {
        font-size: 13px;
        padding: 8px;
    }
}


/*This file was exported by "Export WP Page to Static HTML" plugin which created by ReCorp (https://myrecorp.com) */