/* ===== PAGE ===== */
.mv-page {
    font-family: Arial, Helvetica, sans-serif;
    background: #f2f4f8;
    padding: 40px;
}

/* ===== FORM ===== */
.mv-form-container {
    max-width: 500px;
    margin: auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mv-title {
    margin-bottom: 20px;
}

/* ===== INPUT ===== */
.mv-input,
.mv-textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

/* ===== BUTTON ===== */
.mv-btn {
    padding: 12px 20px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.mv-btn:hover {
    background: #333;
}

/* ===== CHECKBOX ===== */
.mv-checkbox-wrapper {
    margin-bottom: 18px;
}

.mv-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
}

.mv-checkbox-input {
    display: none;
}

.mv-custom-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid #111;
    border-radius: 4px;
    position: relative;
}

.mv-checkbox-input:checked + .mv-custom-checkbox::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #111;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.mv-checkbox-text {
    font-size: 12px;
}

.mv-link {
    color: #0d6efd;              /* text color */
    text-decoration: underline;
    text-decoration-color: #0d6efd; /* underline color */
    text-underline-offset: 4px;
    cursor: pointer;

}

.mv-link:hover {
    color: #ad0000;
}

/* ===== MODAL ===== */
.mv-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    z-index: 11;
}

.mv-modal-content {
    background: #fff;
    padding: 30px; 
    width: 75%;
    /* max-width: 600px; */
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
}

.mv-close {
    float: right;
    cursor: pointer;

    width: 34px;
    height: 34px;
    line-height: 34px;

    text-align: center;
    font-size: 24px;
    font-weight: bold;

    color: #161616;
    background: #fcb3b3;
    border-radius: 50%;

    transition: all 0.25s ease;
}

.mv-close:hover {
    background: #e63946;
    color: #fff;
    transform: rotate(90deg);
}

.mv-close:active {
    transform: scale(0.9) rotate(90deg);
}



.mv-agree-btn {
    margin-top: 20px;
    width: 100%;
    background-color: #ad0000;
}
.mv-agree-btn:hover {
    background-color: #a83535;
}

@media (max-width: 768px) {
    .mv-modal-content
    {
        width:95%;
        max-height: 75vh;
    }
}