#full-custom-referral-form {
    max-width: 700px;
    margin: 20px auto;
    background: #ffffff;
}
#full-custom-referral-form input,
#full-custom-referral-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#full-custom-referral-form textarea{
margin-top:10px;
}
#full-custom-referral-form input[type="submit"] {
    background: #f37636;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius:20px;
    cursor: pointer;
}

#full-custom-referral-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

#full-custom-referral-form h3 {
font-family: "Montserrat", Sans-serif;
font-size:24px;
font-weight:normal;
margin-bottom:0px;
}


/* LOADER */
#referral-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.loader-circle {
    width: 45px;
    height: 45px;
    border: 5px solid #ddd;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* POPUP */
.referral-popup {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}

.referral-popup-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 350px;
    max-width: 90%;
    margin: 15% auto;
    text-align: center;
    position: relative;
}

.close-referral-popup {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 24px;
    cursor: pointer;
}
#referral-popup-message{
font-size:20px !important;
line-height:32px;
color:#F37636 !important;
}