﻿/* Card (same container look as login) */


.card {
    background: #fff;
    border: 1px solid rgba(110,103,164,.18);
    border-radius: 22px;
    box-shadow: var(--soft-shadow)
}

.card-inner {
    padding: 10px 10px
}

.title {
    margin: 0 0 6px;
    text-align: center;
    font-family: Poppins,Inter,sans-serif;
    font-weight: 800;
    font-size: 40px;
    font-weight: 600;
    color: #3d3870;
}


    .title .accent {
        color: #d43446;
    }

.subtitle {
    text-align: center;
    color: var(--muted);
    margin-top: 16px !important;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 14px
}

/* Content */
.desc {
    color: #707070;
    font-size: 14px;
    line-height: 1.65;
}

.topic {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 500;
    color: #1e2340
}

ul.answer-list {
    list-style: none;
    margin: 6px 0 16px;
    padding: 0
}


textarea {
    width: 100%;
    min-height: 120px;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px;
    font-size: 14px;
    background: #f5f8ff;
    resize: vertical
}

.switch_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}
/* wrapper */
.switch_item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
}

    /* reset browser default checkbox */
    .switch_item input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid #403b74;
        border-radius: 4px; /* square with slight rounding */
        background-color: #fff;
        cursor: pointer;
        position: relative;
        transition: all 0.2s ease;
    }

        /* checked state */
        .switch_item input[type="checkbox"]:checked {
            background-color: #403b74;
            border-color: #403b74;
        }

            /* checkmark */
            .switch_item input[type="checkbox"]:checked::after {
                content: "";
                position: absolute;
                left: 4px;
                top: 0px;
                width: 5px;
                height: 10px;
                border: solid #fff;
                border-width: 0 2px 2px 0;
                transform: rotate(45deg);
            }

        /* focus state */
        .switch_item input[type="checkbox"]:focus {
            outline: 2px solid rgba(0,0,0,.25);
            outline-offset: 2px;
        }

    /* label text */
    .switch_item .color_text {
        color: #1f2741;
        font-size: 13px;
        user-select: none;
    }


@media only screen and (min-device-width: 319px) and (max-device-width: 767px) {

    iframe {
        width: 100% !important;
        padding: 0 !important;
    }
}
