/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Popup */
.popup-box {
    background: #fff;
    padding: 28px;
    width: 360px;
    border-radius: 10px;
    position: relative;
    animation: popupFade .3s ease;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 8px;
    right: 12px;
    font-size: 22px;
    border: none;
    background: transparent;
    cursor: pointer;
}

/* Title */
.partnership {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    text-align: center;
}

/* Form group */
.form-group {
    margin-bottom: 14px;
}

/* Labels */
label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Inputs */
form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* Error */
.error {
    color: red;
    font-size: 12px;
    height: 16px;
}

/* Success */
.success {
    color: green;
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
}

/* Button */
.popup-box button {
    width: 100%;
    padding: 12px;
    background: #032f84;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* Animation */
@keyframes popupFade {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.partnership {
    text-align: start;
    font-size: 20px;
    font-weight: 600;
    color: #032f84;
}

.btn_text {
    display: flow;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    align-items: center;
    justify-self: center;
}



/* CTA */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: #012b7c;
    color: white;
}



.full {
    width: 100%;
    margin-top: 15px;
}

/* POPUP */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: fadeIn .3s ease;
}

.popup-box input {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #f1f1f1;
    font-size: 20px;
    cursor: pointer;
}

.close-btn:hover {
    background: #bf1f3f;
    color: #fff;
}

.partnership {
    font-size: 20px;
    font-weight: 600;
    color: #032f84;
    margin-bottom: 10px;
}

/* TOASTER */
#toast {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #032f84;
    color: #fff;
    padding: 14px 22px;
    border-radius: 6px;
    opacity: 0;
    transform: translateY(20px);
    transition: .3s;
    z-index: 9999;
}

#toast.show {
    opacity: 1;
    transform: translateY(0);
}

#toast.error {
    background: #e74c3c;
}

#toast.success {
    background: #27ae60;
}

@keyframes fadeIn {
    from {
        transform: scale(.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}