﻿


.partner-form input {
    padding: 8px;
    border: 1px solid #d5d5f2;
    border-radius: 4px;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 0px;
    font-weight: 500;
    font-size: 12px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
    border: 1px solid #d5d5f2;
    border-radius: 4px;
    margin-bottom: 8px;
    box-sizing: border-box;
    font-family: inherit;
    resize: vertical;
}

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="tel"]:focus,
    select:focus,
    textarea:focus {
        border-color: #5d5de2; /* Highlight color */
        outline: none;
        box-shadow: 0 0 0 2px rgba(122, 95, 255, 0.2); /* Soft glow effect */
    }

code {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
    color: #d63384;
}

.textprimary {
    color: #5d5de2;
    font-weight: 600;
}

select {
    appearance: none;
}

.infobox {
    border-radius: 6px;
    background-color: #ededfd;
    border-left: 3px solid #5d5de2;
    border-radius: 6px;
    padding: 8px 15px;
    margin: 15px 0;
    font-size: 15px;
    font-style: italic;
    color: #333;
    max-width: 800px;
}

    .infobox span {
        margin-right: 6px;
    }

.btnscho {
    width: 100%;
    background-color: #5d5de2;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-size: 13px;
    /*  font-family: 'good times rg';*/
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    line-height: 1.5;
}

    .btnscho:hover {
        background-color: #A03CD2;
        color: #fff
    }


.herotitletop {
    font-size: 2rem;
    font-weight: 800;
    line-height: 40px;
    color: #5d5de2;
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .herotitletop {
        font-size: 1.5rem;
        line-height: 32px;
    }
}

/* Extra small screens (under 480px) */
@media (max-width: 479px) {
    .herotitletop {
        font-size: 1.25rem;
        line-height: 28px;
    }
}


.parent-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    padding: 0px 20px
}

/* Default desktop layout */
.leftboxp {
    flex: 1;
    order: 1;
}

.rightboxp {
    flex: 1;
    order: 2;
}

@media screen and (max-width: 768px) {
    .parent-container {
        flex-direction: column;
    }

    .leftboxp {
        order: 2;
    }

    .rightboxp {
        order: 1; /* Show form first */
        width: 100%;
    }
}

.notefiled {
    font-size: 11px;
    border-left: 3px solid #8d8df0;
    padding: 2px 8px;
    border-radius: 8px;
    background: #fafaff;
    margin-bottom: 3px;
    color: #5d5de2;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.popupmessage {    
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) !important; /* Center both directions */
    width: auto;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    z-index: 1000;
    text-align: center;
    padding: 45px;
    font-size: 18px;
    color: #A03CD2;
}

    .popupmessage.show {
        display: block;
        animation: fadeIn 0.3s ease;
    }

.popupcontent .popupicon {
    font-size: 30px;
    color: red;
    margin-bottom: 10px;
}

.popupmessage h3 {
    margin: 10px 0 5px;
    font-size: 15px;
    font-weight: bold;
    color: #A03CD2
}


.popupmessage button {
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
}

    .popupmessage button:hover {
        background-color: #333;
    }

.popupclose {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    background-color: rgb(21 21 26 / 12%); /* Optional dark tint */
    z-index: 999;
}

    .popup-overlay.show {
        display: flex;
        align-items: center;
        justify-content: center;
    }

 