@import url("https://use.typekit.net/oil2jnb.css");

body {
    margin: 0px;
    font-family: "Area Normal", sans-serif;
    background-color: #37abc8;
}

.mdi-rx-logo {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    padding-top: 21.5px;
    padding-bottom: 21.5px;
}

.mdi-rx-portal {
    max-width: 100%;
    margin: auto;
    min-height: 582px;
}

.mdi-rx-header h1 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 600;
    color: #1f2937;
}

.mdi-rx-header p {
    margin: 0;
    color: #6b7280;
    font-size: 15px;
}

.mdi-questionnaire-select {
    width: 100%;
    max-width: none;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    background: #fff;
    color: #111827;
}

.mdi-questionnaire-select:focus {
    outline: none;
    border-color: #111827;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}


.mdi-empty-state,
.mdi-loading,
.mdi-error {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    color: #6b7280;
    margin-top: 20px;
}

.mdi-error {
    color: #b91c1c;
    background: #fef2f2;
    border-color: #fecaca;
}

.mdi-questionnaire-frame-wrap {
    display: none;
    width: 100%;
}

.mdi-questionnaire-frame {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 12px;
    background: #fff;
}

.mdi-rx-select-grid {
    max-width: 100%;
    margin: 0 auto 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: end;
}

.mdi-rx-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mdi-rx-field label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}


@media (max-width: 768px) {

    body {
        background-color: white;
    }

    .mdi-rx-logo {
        max-width: 182px;
        padding-top: 13px;
        padding-bottom: 11px;
    }

    .mdi-rx-select-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .mdi-rx-portal select {
        margin-bottom: 20px;
    }

    .mdi-rx-footer {
        margin-left: 16px;
        margin-right: 16px;
    }
}