/* MakeMyInvitation Auth Modal Styles */

.mmi-modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mmi-modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mmi-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.mmi-close-btn:hover {
    color: #333;
}

.mmi-modal h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.mmi-modal p {
    color: #666;
    margin-bottom: 1.5rem;
}

.mmi-modal input[type="tel"],
.mmi-modal input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.mmi-modal .btn {
    width: 100%;
    padding: 10px;
}

.mmi-msg {
    margin-top: 10px;
    font-size: 14px;
}

.mmi-msg.error {
    color: #d32f2f;
}

.mmi-msg.success {
    color: #388e3c;
}