:root {
    --sus-blue: #0b4ea2;
    --sus-blue-deep: #073579;
    --sus-blue-soft: #d8e5f3;
    --sus-green: #13864d;
    --sus-green-soft: #dff3e7;
    --sus-gold: #f1b530;
    --sus-gold-soft: #fff3d8;
    --sus-sky: #4f9df0;
    --sus-ink: #10213a;
    --sus-muted: #62748c;
    --surface: #ffffff;
    --surface-soft: #f4f8fc;
    --surface-strong: #edf4fa;
    --border: #d9e6f1;
    --danger: #d14141;
    --danger-soft: #fdebec;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --shadow-soft: 0 22px 50px rgba(7, 53, 121, 0.12);
    --shadow-card: 0 16px 30px rgba(12, 48, 107, 0.1);
    --shadow-fab: 0 18px 30px rgba(11, 78, 162, 0.22);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    min-height: 100%;
}

body {
    font-family: 'Nunito Sans', 'Segoe UI', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(79, 157, 240, 0.12), transparent 26%),
        radial-gradient(circle at bottom right, rgba(19, 134, 77, 0.12), transparent 24%),
        linear-gradient(180deg, #f7fbff 0%, #eef6fb 46%, #e8f2f7 100%);
    color: var(--sus-ink);
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
}

img {
    max-width: 100%;
    display: block;
}

.hidden {
    display: none !important;
}

.app-shell {
    width: 100%;
    min-height: 100vh;
}

.view {
    min-height: 100vh;
}

.view-login {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

.login-stage {
    width: 100%;
    max-width: 420px;
    min-height: calc(100vh - 48px);
    padding: 28px 18px 22px;
    border-radius: 28px;
    border: 1px solid rgba(11, 78, 162, 0.08);
    box-shadow: var(--shadow-soft);
    background:
        radial-gradient(circle at top, rgba(79, 157, 240, 0.12), transparent 30%),
        radial-gradient(circle at bottom right, rgba(19, 134, 77, 0.16), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 254, 0.96));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-brand {
    text-align: center;
    margin-bottom: 26px;
}

.brand-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: linear-gradient(145deg, var(--sus-blue), #2c86df);
    box-shadow: 0 18px 28px rgba(11, 78, 162, 0.28);
    display: grid;
    place-items: center;
}

.brand-icon svg {
    width: 40px;
    height: 40px;
}

.brand-icon rect {
    fill: rgba(255, 255, 255, 0.15);
}

.brand-icon path {
    fill: none;
    stroke: #fff;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.login-brand h1,
.hero h2,
.screen-header h2,
.sus-card-body h3 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.login-brand h1 {
    font-size: 2rem;
    line-height: 1.15;
}

.login-brand p {
    margin-top: 6px;
    color: var(--sus-muted);
    font-size: 1rem;
}

.login-card,
.panel-card,
.mini-card,
.detail-card,
.summary-card,
.official-card-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 230, 241, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.login-card {
    padding: 22px;
}

.card-title {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.card-title svg {
    width: 28px;
    height: 28px;
    fill: var(--sus-blue);
    flex-shrink: 0;
}

.card-title strong {
    display: block;
    font-size: 1.65rem;
    line-height: 1.15;
}

.card-title span {
    display: block;
    margin-top: 4px;
    color: var(--sus-muted);
    font-size: 0.95rem;
}

.segment {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 6px;
    border-radius: 18px;
    background: var(--surface-strong);
    margin-bottom: 18px;
}

.segment-button {
    min-height: 46px;
    border-radius: 14px;
    color: var(--sus-muted);
    font-weight: 700;
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.segment-button.is-active {
    background: linear-gradient(135deg, var(--sus-blue), #2d82d7);
    color: #fff;
    box-shadow: 0 12px 20px rgba(11, 78, 162, 0.18);
}

.login-form,
.booking-form {
    display: grid;
    gap: 16px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.input-shell,
select,
textarea,
.search-shell {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #f7fbff;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

select,
textarea {
    width: 100%;
    padding: 14px 16px;
    align-items: initial;
}

textarea {
    min-height: 96px;
    resize: vertical;
}

.input-shell svg,
.search-shell svg {
    width: 20px;
    height: 20px;
    fill: var(--sus-muted);
    flex-shrink: 0;
}

.input-shell input,
.search-shell input {
    flex: 1;
    width: 100%;
    border: 0;
    background: transparent;
    outline: none;
    color: var(--sus-ink);
    font-size: 1.05rem;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

.input-shell:focus-within,
select:focus,
textarea:focus,
.search-shell:focus-within {
    border-color: rgba(11, 78, 162, 0.5);
    box-shadow: 0 0 0 4px rgba(11, 78, 162, 0.08);
    background: #fff;
}

.form-field small {
    display: block;
    margin-top: 8px;
    color: var(--sus-muted);
}

.btn {
    min-height: 52px;
    padding: 0 18px;
    border-radius: 18px;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.btn:active {
    transform: scale(0.98);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary {
    background: linear-gradient(135deg, var(--sus-blue), #2d82d7);
    color: #fff;
    box-shadow: 0 16px 24px rgba(11, 78, 162, 0.18);
}

.btn-secondary {
    background: linear-gradient(135deg, #f1f7ff, #e1ecf8);
    color: var(--sus-blue);
    border: 1px solid rgba(11, 78, 162, 0.12);
}

.btn-ghost {
    color: var(--sus-muted);
}

.btn-block {
    width: 100%;
}

.button-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.alert {
    display: none;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 700;
    line-height: 1.4;
}

.alert.show {
    display: block;
}

.alert-error {
    background: var(--danger-soft);
    border-color: rgba(209, 65, 65, 0.18);
    color: var(--danger);
}

.alert-success {
    background: var(--sus-green-soft);
    border-color: rgba(19, 134, 77, 0.15);
    color: var(--sus-green);
}

.login-privacy {
    margin-top: 18px;
    text-align: center;
    color: var(--sus-muted);
    font-size: 0.92rem;
}

.view-portal {
    display: none;
    max-width: 430px;
    margin: 0 auto;
    background:
        radial-gradient(circle at top left, rgba(79, 157, 240, 0.1), transparent 32%),
        linear-gradient(180deg, #f3f8fc 0%, #eef5fa 100%);
    box-shadow: var(--shadow-soft);
    border-left: 1px solid rgba(11, 78, 162, 0.06);
    border-right: 1px solid rgba(11, 78, 162, 0.06);
    min-height: 100vh;
}

.screen {
    display: none;
    min-height: 100vh;
    position: relative;
}

.screen.active {
    display: block;
}

.hero {
    padding: 20px 18px 28px;
    color: #fff;
}

.hero-home {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(135deg, var(--sus-blue), #2e80d5);
    border-radius: 0 0 26px 26px;
}

.hero-queue {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 50%),
        linear-gradient(135deg, #36ad6c, #63c694);
    border-radius: 0 0 26px 26px;
}

.hero-top,
.screen-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.hero-profile {
    display: flex;
    gap: 14px;
    align-items: center;
}

.hero-profile span,
.hero-top p,
.screen-header p,
.sus-card-top small {
    color: rgba(255, 255, 255, 0.82);
}

.hero-top h2,
.screen-header h2 {
    font-size: 1.7rem;
    line-height: 1.1;
}

.hero-top p,
.screen-header p {
    margin-top: 4px;
}

.screen-header {
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(217, 230, 241, 0.9);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.screen-header p {
    color: var(--sus-muted);
}

.compact-top {
    align-items: center;
}

.avatar-badge,
.icon-button,
.icon-button-light,
.shortcut-icon {
    display: grid;
    place-items: center;
}

.avatar-badge {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.16);
}

.avatar-badge svg,
.icon-button svg,
.icon-button-light svg,
.shortcut-icon svg,
.fab svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.icon-button,
.icon-button-light {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    color: var(--sus-ink);
    background: rgba(237, 244, 250, 0.9);
}

.icon-button-light {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.hero-pill {
    flex: 1;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.hero-pill strong {
    display: block;
    font-size: 1.5rem;
}

.hero-pill span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-pill-soft {
    background: rgba(255, 255, 255, 0.24);
}

.screen-body {
    padding: 18px 18px 34px;
}

.screen-body-home {
    padding-top: 16px;
}

.shortcut-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.shortcut-card {
    text-align: left;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 230, 241, 0.9);
    box-shadow: var(--shadow-card);
    min-height: 156px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.shortcut-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 18px;
    color: #fff;
}

.shortcut-card strong {
    font-size: 1.45rem;
    line-height: 1.15;
}

.shortcut-card small {
    margin-top: 8px;
    color: var(--sus-muted);
    font-size: 0.97rem;
}

.shortcut-blue .shortcut-icon {
    background: linear-gradient(135deg, var(--sus-blue), #2e80d5);
}

.shortcut-green .shortcut-icon {
    background: linear-gradient(135deg, #24aa63, #4fc78a);
}

.shortcut-gold .shortcut-icon {
    background: linear-gradient(135deg, #f1b530, #ffcb4f);
    color: #fff;
}

.shortcut-sky .shortcut-icon {
    background: linear-gradient(135deg, #2263c8, #4f9df0);
}

.content-section,
.panel-card,
.sus-card-view,
.detail-card,
.official-card-card {
    margin-top: 18px;
}

.panel-card,
.mini-card,
.detail-card,
.summary-card,
.official-card-card {
    padding: 18px;
}

.panel-card-reference {
    background: linear-gradient(135deg, rgba(19, 134, 77, 0.08), rgba(216, 229, 243, 0.6));
}

.section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.section-heading h3 {
    font-size: 1.18rem;
}

.text-button,
.helper-chip {
    color: var(--sus-blue);
    font-weight: 800;
}

.helper-chip,
.microarea-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    background: rgba(11, 78, 162, 0.08);
}

.microarea-pill {
    color: var(--sus-blue);
}

.panel-card-reference p {
    font-size: 1.2rem;
    font-weight: 800;
}

.panel-card-reference small {
    display: block;
    margin-top: 8px;
    color: var(--sus-muted);
}

.stack-list {
    display: grid;
    gap: 12px;
}

.stack-list-spacious {
    margin-top: 18px;
}

.compact-list {
    margin-top: 14px;
}

.empty-inline,
.empty-state {
    border-radius: 18px;
    border: 1px dashed rgba(98, 116, 140, 0.22);
    padding: 20px 16px;
    text-align: center;
    color: var(--sus-muted);
    background: rgba(255, 255, 255, 0.66);
}

.empty-state {
    min-height: 220px;
    display: grid;
    place-items: center;
}

.timeline-list {
    display: grid;
    gap: 10px;
}

.timeline-item,
.vaccine-card,
.queue-card,
.consulta-card,
.med-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 230, 241, 0.88);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.timeline-item,
.consulta-card,
.med-card,
.vaccine-card,
.queue-card {
    padding: 16px;
}

.timeline-item {
    display: grid;
    gap: 6px;
}

.timeline-item small,
.consulta-meta,
.queue-card small,
.vaccine-card small,
.med-card small {
    color: var(--sus-muted);
}

.timeline-item strong,
.consulta-card strong,
.queue-card strong,
.vaccine-card strong,
.med-card strong {
    font-size: 1.05rem;
}

.install-card {
    display: none;
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(11, 78, 162, 0.12);
    background: linear-gradient(135deg, rgba(11, 78, 162, 0.08), rgba(216, 229, 243, 0.7));
}

.install-card.show {
    display: block;
}

.install-card p {
    margin-top: 6px;
    color: var(--sus-muted);
}

.install-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.tabs {
    display: flex;
    gap: 8px;
    padding-top: 10px;
}

.tab-button {
    flex: 1;
    min-height: 42px;
    border-radius: 14px;
    font-weight: 800;
    color: var(--sus-muted);
    background: var(--surface-strong);
}

.tab-button.is-active {
    background: linear-gradient(135deg, var(--sus-blue), #2d82d7);
    color: #fff;
    box-shadow: 0 14px 24px rgba(11, 78, 162, 0.16);
}

.consulta-card {
    display: grid;
    gap: 14px;
}

.consulta-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
}

.consulta-head strong {
    font-size: 1.15rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.82rem;
}

.badge.confirmada {
    color: var(--sus-green);
    background: var(--sus-green-soft);
}

.badge.pendente {
    color: #b46f06;
    background: var(--sus-gold-soft);
}

.badge.cancelada {
    color: var(--danger);
    background: var(--danger-soft);
}

.badge.reagendada {
    color: var(--sus-blue);
    background: rgba(11, 78, 162, 0.09);
}

.badge.concluida,
.badge.faltou {
    color: var(--sus-muted);
    background: rgba(98, 116, 140, 0.1);
}

.consulta-grid {
    display: grid;
    gap: 10px;
}

.consulta-meta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.consulta-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.mini-action {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 12px;
    background: #eff5fb;
    color: var(--sus-blue);
    font-weight: 800;
}

.mini-action.danger {
    color: var(--danger);
    background: var(--danger-soft);
}

.fab {
    position: fixed;
    right: calc(50% - 202px + 18px);
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--sus-blue), #2e80d5);
    color: #fff;
    box-shadow: var(--shadow-fab);
}

.queue-card {
    background: linear-gradient(180deg, rgba(19, 134, 77, 0.08), rgba(255, 255, 255, 0.96));
}

.queue-card.priority {
    background: linear-gradient(180deg, rgba(241, 181, 48, 0.14), rgba(255, 255, 255, 0.96));
}

.queue-position {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-size: 2.3rem;
    line-height: 1;
    color: var(--sus-blue);
}

.queue-callout {
    color: #9a6500;
}

.sus-card-view {
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(115deg, rgba(241, 181, 48, 0.98) 0, rgba(241, 181, 48, 0.98) 14px, transparent 14px),
        linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    border: 1px solid rgba(11, 78, 162, 0.12);
    box-shadow: var(--shadow-card);
}

.sus-card-top {
    padding: 18px 18px 14px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 26%),
        linear-gradient(135deg, var(--sus-blue-deep), var(--sus-blue));
    color: #fff;
}

.sus-card-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sus-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 800;
    letter-spacing: 0.04em;
}

.sus-card-brand strong {
    display: block;
    font-size: 1.05rem;
}

.sus-card-accent {
    margin-top: 12px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sus-green), #2fc76d 60%, var(--sus-gold));
}

.sus-card-body {
    padding: 18px;
}

.field-kicker {
    display: block;
    color: var(--sus-muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sus-card-body h3 {
    margin-top: 6px;
    font-size: 1.42rem;
    line-height: 1.2;
}

.sus-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.sus-card-grid div,
.sus-card-footer div {
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(216, 229, 243, 0.5), rgba(255, 255, 255, 0.9));
}

.sus-card-grid strong,
.sus-card-footer strong {
    display: block;
    margin-top: 6px;
}

.sus-card-footer {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.detail-list {
    display: grid;
    gap: 12px;
}

.detail-list div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(217, 230, 241, 0.9);
}

.detail-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.detail-list span {
    color: var(--sus-muted);
}

.detail-list strong {
    text-align: right;
}

.official-card-card img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 12px 22px rgba(7, 53, 121, 0.12);
}

.booking-form select {
    appearance: none;
    background:
        linear-gradient(45deg, transparent 50%, var(--sus-muted) 50%) calc(100% - 18px) calc(50% - 3px) / 8px 8px no-repeat,
        linear-gradient(135deg, var(--sus-muted) 50%, transparent 50%) calc(100% - 12px) calc(50% - 3px) / 8px 8px no-repeat,
        #f7fbff;
}

.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.choice-chip {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: #eef5fb;
    color: var(--sus-blue);
    font-weight: 800;
    border: 1px solid rgba(11, 78, 162, 0.08);
}

.choice-chip small {
    display: block;
    font-size: 0.76rem;
    color: var(--sus-muted);
}

.choice-chip.is-active {
    color: #fff;
    background: linear-gradient(135deg, var(--sus-blue), #2d82d7);
    box-shadow: 0 14px 24px rgba(11, 78, 162, 0.16);
}

.choice-chip.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.summary-card p {
    margin-top: 8px;
    font-weight: 700;
}

.summary-card small {
    display: block;
    margin-top: 8px;
    color: var(--sus-muted);
}

.vaccine-card.pending {
    background: linear-gradient(135deg, rgba(241, 181, 48, 0.14), rgba(255, 255, 255, 0.98));
}

.vaccine-card small,
.med-badges {
    display: block;
    margin-top: 6px;
}

.med-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

.pill.ok {
    color: var(--sus-green);
    background: var(--sus-green-soft);
}

.pill.empty {
    color: var(--sus-muted);
    background: rgba(98, 116, 140, 0.1);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%) translateY(120px);
    min-width: 240px;
    max-width: calc(100vw - 32px);
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(16, 33, 58, 0.96);
    color: #fff;
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease;
    z-index: 50;
    text-align: center;
    font-weight: 700;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.loading-state {
    display: grid;
    place-items: center;
    min-height: 140px;
    color: var(--sus-muted);
}

.loading-state::before {
    content: '';
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 3px solid rgba(11, 78, 162, 0.14);
    border-top-color: var(--sus-blue);
    animation: giro 0.8s linear infinite;
}

@keyframes giro {
    to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .fab {
        right: 18px;
    }
}

@media (min-width: 431px) {
    .view-login {
        padding: 32px 20px;
    }

    .view-portal {
        border-radius: 28px 28px 0 0;
        margin-top: 10px;
        margin-bottom: 10px;
        min-height: calc(100vh - 20px);
    }
}
