
.pl-open-signup {
    padding: 15px 30px;
    background-color: #fff!important;
    color: #000;
    border: none!important;
    border-radius: 0;
    cursor: pointer;
    font-size: 15px;
    font-family: "Conthrax";
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
    animation: pulse 1.5s infinite ease-in-out;
}

.pl-open-signup:hover {
    background-color: #F37225!important;
    color:#000;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
    70% { box-shadow: 0 0 0 25px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pl-alt-button {
    padding: 14px 32px;
    background-color: #F37225!important;
    color: #fff;
    font-family: "Conthrax";
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pl-alt-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 50px;
}

.pl-alt-button:hover::before {
    transform: scaleX(1);
}

.pl-alt-button:hover {
    color: #fff !important;
    box-shadow: 0 6px 18px rgba(243, 114, 37, 0.3);
}

.pl-firststep-button {
    padding: 14px 32px;
    background-color: #000!important;
    color: #fff;
    font-family: "Contrax";
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pl-firststep-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    color:#000;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    border-radius: 50px;
}

.pl-firststep-button:hover::before {
    transform: scaleX(1);
}

.pl-firststep-button:hover {
    color: #000 !important;
    box-shadow: 0 6px 18px rgba(243, 114, 37, 0.3);
}

.pl-signup-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pl-signup-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pl-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #555;
    transition: color 0.3s;
}

.pl-close:hover {
    color: #F37226;
}

.pl-signup-content h2 {
    margin-top: 0;
    color: #F37226;
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
}

#pl-signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#pl-signup-form label {
    font-weight: 600;
    color: #333;
}

.pl-field-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.pl-field-group div {
    flex: 1;
    min-width: 45%;
}

#pl-signup-form input,
#pl-signup-form select {
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

#pl-signup-form input:focus,
#pl-signup-form select:focus {
    border-color: #F37226;
}

#pl-signup-form button {
    padding: 12px;
    background-color: #F37226;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-family: Poppins;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 50%;
    margin: 0 auto;
}

#pl-signup-form button:hover {
    background-color: #d55d17;
    color: #000;
}

.pl-hidden {
    display: none;
}