/* SMART POPUP OVERLAY */
.smart-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    padding: 20px;
}

/* POPUP BOX */
.smart-popup-box {
    background: #fff;
    width: 100%;
    max-width: 380px;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    animation: smartPopupFadeIn 0.3s ease-out;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-align: center;
}

/* FADE IN */
@keyframes smartPopupFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* CLOSE BUTTON */
.smart-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
}

.smart-popup-close:hover {
    color: #000;
}

/* TITLES & TEXT */
.smart-popup-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.smart-popup-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.smart-popup-footer {
    font-size: 13px;
    color: #777;
    margin-top: 15px;
}

/* FORM GROUP */
.smart-form-group {
    margin-bottom: 15px;
    text-align: left;
}

.smart-form-group label {
    font-size: 14px;
    display: block;
    margin-bottom: 4px;
}

.smart-form-group input {
    width: 100%;
    padding: 9px 12px;
    font-size: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    outline: none;
}

.smart-form-group input:focus {
    border-color: #5a67d8;
}

/* ERROR TEXT */
.smart-popup-error {
    font-size: 12px;
    color: red;
    margin-top: 3px;
    display: block;
}

/* SUBMIT BUTTON */
.smart-popup-submit-btn {
    width: 100%;
    padding: 10px;
    background: #4f46e5;
    color: #fff;
    font-size: 15px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 5px;
}

.smart-popup-submit-btn:hover {
    background: #4338ca;
}

/* SUCCESS BOX */
.smart-popup-success {
    font-size: 16px;
    padding: 20px;
    text-align: center;
    background: #e6ffe6;
    border: 1px solid #b2ffb2;
    border-radius: 8px;
}
