@font-face {
    font-family: 'Charis SIL Regular';
    src: url(../../Fonts/Charis-SIL/CharisSIL-Regular.ttf);
}
@font-face {
    font-family: 'Charis SIL Bold';
    src: url(../../Fonts/Charis-SIL/CharisSIL-Bold.ttf);
}
@font-face {
    font-family: 'Charis SIL Bold Italic';
    src: url(../../Fonts/Charis-SIL/CharisSIL-BoldItalic.ttf);
}
@font-face {
    font-family: 'Charis SIL Italic';
    src: url(../../Fonts/Charis-SIL/CharisSIL-Italic.ttf);
}
@font-face {
    font-family: 'Geist';
    src: url(../../Fonts/Geist/Geist-VariableFont_wght.ttf);
}* {
    box-sizing: border-box;
}

body {
    font-family: 'Geist', sans-serif;
    background-color: #f6e7d9;
    margin: 0;
}

/* Layout */
.application-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 32px 16px;
    margin: auto;
}

.application-card {
    width: 90%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    background-color: #ffffff;
    border: 1.5px solid #fc8b20;
    border-radius: 14px;
    padding: 36px;
}

/* Normalize card spacing across pages that mix Bootstrap margin utilities */
.main-head.application-card {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.application-card.application-card--muted {
    max-width: 1040px;
    background-color: #fffdfb;
    border-color: #f2b37a;
}

.application-card.application-card--muted .form-title {
    color: #e57f27;
}

.application-card.application-card--muted .form-subtitle {
    color: #7a7a7a;
}

.application-card.application-card--muted .form-row input,
.application-card.application-card--muted .form-row select,
.application-card.application-card--muted .form-row textarea {
    border-color: #bcbcbc;
}

.application-card.application-card--full {
    width: 90%;
}

/* Navigation */
.back-link {
    display: inline-block;
    margin-bottom: 12px;
    color: #de710c;
    font-size: 14px;
    text-decoration: none;
}

/* Main Headers */
.form-title {
    font-family: 'Charis SIL Bold', serif;
    text-align: center;
    color: #de710c !important;
    margin-bottom: 6px;
    font-weight: bold !important;
    font-size: 36px;
}

.form-subtitle {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-bottom: 28px;
}

/* Section Headers */
.section-title {
    font-family: 'Charis SIL Bold', serif;
    font-size: 18px;
    font-weight: 700;
    margin: 28px 0 16px;
}

.centered-section {
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 25px;
    color: #333;
    font-size: 26px;
    font-family: 'Charis SIL Bold', serif;
}

.bold-header {
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
    color: #333;
    font-size: 16px;
}

/* Grid System */
.status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    font-size: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 20px;
}

.form-row.form-row--triple {
    grid-template-columns: repeat(3, 1fr);
}

/* Input Styles */
.form-row input, .form-row select, .form-row textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #a8a7a7;
    border-radius: 6px;
    font-size: 14px;
}

/* Prevent checkboxes from inheriting full-width text input styles */
.form-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 3px;
}

/* Ensure Bootstrap form-control inputs match form-row styling */
.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #a8a7a7;
    border-radius: 6px;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #e8872f;
    box-shadow: none;
}

.form-row select,
.input-stack select,
.application-card select,
.application-card--muted select {
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.form-row textarea {
    resize: none;
}

.form-row input:focus {
    outline: none;
    border-color: #e8872f;
}

.form-row input.is-invalid,
.form-row select.is-invalid,
.form-row textarea.is-invalid,
.application-card input.is-invalid,
.application-card select.is-invalid,
.application-card textarea.is-invalid,
.form-control.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.15rem rgba(220, 53, 69, 0.12);
    background-image: none;
}

.form-row input.is-invalid:focus,
.form-row select.is-invalid:focus,
.form-row textarea.is-invalid:focus,
.application-card input.is-invalid:focus,
.application-card select.is-invalid:focus,
.application-card textarea.is-invalid:focus,
.form-control.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.18);
    outline: none;
}

/* Muted readonly / disabled fields */
.application-card input[readonly],
.application-card textarea[readonly],
.application-card select[disabled],
.application-card input:disabled,
.form-row input[readonly],
.form-row textarea[readonly],
.form-row select[disabled],
.form-row input:disabled,
.status-row input[readonly],
.status-row input:disabled {
    background-color: #f3f4f6 !important;
    color: #6b7280 !important;
    border-color: #d1d5db !important;
    cursor: not-allowed;
}

/* Date modal proxy fields stay interactive and should not inherit muted readonly styling */
.application-card input.resident-date-proxy[readonly],
.form-row input.resident-date-proxy[readonly],
.status-row input.resident-date-proxy[readonly],
.application-card input.resident-date-proxy[readonly]:focus,
.form-row input.resident-date-proxy[readonly]:focus,
.status-row input.resident-date-proxy[readonly]:focus {
    background-color: #ffffff !important;
    color: #111827 !important;
    border-color: #cbd5e1 !important;
    -webkit-text-fill-color: #111827 !important;
    opacity: 1 !important;
    cursor: pointer !important;
}

/* Column Spans */
.full-width {
    grid-column: span 4;
}

.phone {
    grid-column: span 2;
}

.span-3 {
    grid-column: span 3;
}

.tablet-full {
    grid-column: span 1;
}

.contact {
    grid-column: span 4;
}

/* Label Styles */
.input-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
}

/* Override per-page inline tweaks so label spacing stays consistent */
.main-head .input-stack {
    margin-bottom: 0 !important;
}

.top-label {
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin-bottom: 8px;
    color: #333;
    text-align: left;
    line-height: 1.3;
}

.main-head .top-label {
    margin-bottom: 8px !important;
}

.label-help-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.label-help-row .top-label {
    margin-bottom: 0;
}

.label-help-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #2563eb;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    border-radius: 999px;
    cursor: pointer;
}

.label-help-trigger:hover,
.label-help-trigger:focus {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.08);
    outline: none;
}

.area-picker-input {
    cursor: pointer;
    background-image:
        url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.application-card input.complaint-picker-proxy[readonly],
.form-row input.complaint-picker-proxy[readonly],
.status-row input.complaint-picker-proxy[readonly],
.application-card input.resident-date-proxy.complaint-picker-proxy[readonly],
.form-row input.resident-date-proxy.complaint-picker-proxy[readonly] {
    background-color: #ffffff !important;
    color: #1f2937 !important;
    border-color: #a8a7a7 !important;
    cursor: pointer !important;
    opacity: 1;
    -webkit-text-fill-color: #1f2937;
}

.complaint-picker-proxy::placeholder {
    color: #6b7280;
    opacity: 1;
}

.complaint-form-modal .modal-content {
    border: 1px solid #f2d3b8;
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(77, 45, 12, 0.18);
    overflow: hidden;
}

.complaint-form-modal .modal-header {
    padding: 20px 22px 14px;
    border-bottom: 1px solid #f2e3d3;
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
}

.complaint-form-modal .btn-close {
    opacity: 0.78;
}

.complaint-form-modal .btn-close:hover,
.complaint-form-modal .btn-close:focus {
    opacity: 1;
    box-shadow: none;
}

.complaint-form-modal__heading {
    font-family: 'Charis SIL Bold', serif;
    font-size: 20px;
    color: #2f2419;
    line-height: 1.2;
}

.complaint-form-modal__subheading {
    margin-top: 4px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.complaint-form-modal__body {
    padding: 20px 22px 16px;
    background: #ffffff;
}

.complaint-form-modal__secondary-btn {
    min-height: 48px;
    border: 1px solid #d6dce5;
    border-radius: 12px;
    background: #ffffff;
    color: #7c3f00;
    font-weight: 600;
}

.complaint-form-modal__secondary-btn:hover,
.complaint-form-modal__secondary-btn:focus {
    border-color: #e8872f;
    background: #fff7f0;
    color: #b75f0d;
    box-shadow: none;
}

.complaint-form-modal__primary-btn {
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid #e8872f;
    border-radius: 12px;
    background: linear-gradient(135deg, #f59b3d 0%, #e8872f 100%);
    color: #ffffff !important;
    font-weight: 700;
}

.complaint-form-modal__primary-btn:hover,
.complaint-form-modal__primary-btn:focus {
    border-color: #cf6f14;
    background: linear-gradient(135deg, #e8872f 0%, #cf6f14 100%);
    box-shadow: 0 12px 24px rgba(232, 135, 47, 0.22);
}

#complaintTimeModal .modal-dialog {
    max-width: 680px;
}

#complaintTimeModal .modal-body .form-row {
    margin-bottom: 14px;
}

#complaintTimeModal #incidentTimePicker {
    min-height: 56px;
    border: 1px solid #d7dbe2;
    border-radius: 14px;
    background: #fbfcfe;
    font-size: 16px;
}

#complaintTimeModal #incidentTimePicker:focus {
    border-color: #e8872f;
    box-shadow: 0 0 0 0.18rem rgba(232, 135, 47, 0.14);
}

#complaintTimeModal #incidentTimePreview {
    color: #6b7280 !important;
    font-size: 14px;
}

#complaintTimeModal .modal-footer {
    padding: 14px 22px 20px;
    border-top: 1px solid #f2e3d3;
    background: #fffdfb;
    gap: 10px;
}

.complaint-area-modal-dialog {
    max-width: 640px;
}

.complaint-area-modal-dialog .modal-header {
    position: relative;
    padding-right: 64px;
}

.complaint-area-close-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(191, 87, 0, 0.18);
    border-radius: 999px;
    background: #fff4e8;
    box-shadow: 0 8px 18px rgba(207, 111, 20, 0.10);
    opacity: 1;
    color: #b75f0d;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.complaint-area-close-btn:hover,
.complaint-area-close-btn:focus {
    background: #ffe8d0;
    border-color: #cf6f14;
    box-shadow: 0 10px 20px rgba(207, 111, 20, 0.16);
    opacity: 1;
    outline: none;
}

.complaint-area-modal-dialog .modal-body {
    max-height: min(68vh, 620px);
    overflow-y: auto;
    padding: 18px 20px 20px;
}

.complaint-area-options {
    padding-right: 2px;
}

.area-guide-option {
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    border: 1px solid #d6dce5;
    border-radius: 16px;
    background: #f8fafc;
    color: #1f2937;
}

.area-guide-option:hover,
.area-guide-option:focus {
    border-color: #e8872f;
    background: #fff7f0;
    outline: none;
    box-shadow: 0 0 0 0.16rem rgba(232, 135, 47, 0.14);
}

.area-guide-option__title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.2;
}

.area-guide-option__meta {
    font-size: 13px;
    color: #5b6470;
    line-height: 1.45;
}

.required-asterisk {
    color: #ff0000;
    font-weight: bold;
    margin-left: 2px;
}

.complaint-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-width: 0;
    padding: 15px 20px;
    border: 1px solid #e8872f;
    border-radius: 14px;
    background: linear-gradient(135deg, #f59b3d 0%, #e8872f 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 24px rgba(232, 135, 47, 0.22);
}

.complaint-action-btn:hover,
.complaint-action-btn:focus {
    border-color: #cf6f14;
    background: linear-gradient(135deg, #e8872f 0%, #cf6f14 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(207, 111, 20, 0.26);
}

.complaint-action-btn i {
    font-size: 18px;
    line-height: 1;
}

.complaint-upload-wrap {
    position: relative;
}

.attachment-close-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid rgba(191, 87, 0, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #b75f0d;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(207, 111, 20, 0.12);
}

.complaint-upload-wrap--with-close .attachment-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
}

.attachment-close-btn:hover,
.attachment-close-btn:focus {
    border-color: #cf6f14;
    background: #fff4e8;
    color: #9f4f08;
    outline: none;
}

.witness-add-btn {
    width: 100%;
    min-height: 48px;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
}

.witness-entry {
    margin-bottom: 20px;
}

.witness-entry-card {
    border: 1px solid #f1cfb1;
    border-radius: 18px;
    background: #fffdfa;
    padding: 22px 18px 16px;
}

.witness-remove-btn {
    top: 14px;
    right: 14px;
}

.flex-input {
    width: 100%;
}

.beneficiary-block {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 14px 16px;
    background-color: #fafafa;
    width: 100%;
}

.beneficiary-question {
    margin-bottom: 10px;
    line-height: 1.4;
}

.beneficiary-options {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.beneficiary-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #333;
    font-size: 14px;
}

.app-type-label {
    display: inline-block;
    white-space: nowrap;
}

.app-type-row .if-building-note {
    line-height: 1;
}

.app-type-row .check-item {
    align-items: center;
    margin-bottom: 0;
}

.app-type-row input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
}

.app-type-row {
    gap: 12px;
}

.app-type-select {
    width: min(100%, 320px);
    min-width: 220px;
}

.clearance-radio {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #FE993C;
}

.permits-columns {
    width: 100%;
    padding-left: 200px;
    padding-right: 200px;
}

.permits-right-col {
    padding-left: 100px;
}

.others-spec-input {
    flex: 1 1 auto;
    min-width: 0;
}

.permits-columns input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.others-row {
    width: 100%;
    align-items: center;
    margin-top: 10px;
}

.others-label {
    min-width: 60px;
}

.others-spec-input {
    width: 100%;
}

.permits-columns-row {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: space-between;
}

.beneficiary-option input[type="radio"] {
    margin: 0;
}

.requirements-box {
    border: 1px solid #e8d9ca;
    background: #fff7f1;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 22px;
}

.requirements-subtitle {
    font-size: 15px;
    margin: 10px 0 6px;
    color: #5f4a34;
    font-weight: 700;
}

.requirements-list {
    margin: 0;
    padding-left: 20px;
}

.requirements-list li {
    margin-bottom: 6px;
    color: #4a4a4a;
    line-height: 1.4;
}

.upload-dropzone {
    position: relative;
    width: 100%;
    border: 2px dashed #d5b18f;
    border-radius: 10px;
    background: #fffaf6;
    color: #5e5e5e;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    cursor: pointer;
}

.upload-dropzone-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-dropzone i {
    font-size: 24px;
    color: #e8872f;
}

.upload-dropzone small {
    color: #7a7a7a;
}

.upload-dropzone.is-dragging {
    border-color: #fe993c;
    background: #fff2e6;
}

.selected-files {
    word-break: break-word;
}

.id-guidance-card {
    min-height: 100%;
    border: 1px solid #f2d3b8;
    background: #fffaf6;
    border-radius: 10px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.id-guidance-card__title {
    font-weight: 700;
    color: #7c3f00;
}

.id-guidance-card__meta {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

/* Footer & Button */
.agreement-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-top: 28px;
}

/* Normalize extra spacing from Bootstrap rows inside form rows */
.form-row .row {
    margin-bottom: 0 !important;
}

/* Agreement checkbox as toggle switch (scoped only to agreement row) */
.agreement-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 58px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid #c7c7c7;
    background: #d7d7d7;
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    flex: 0 0 auto;
}

.agreement-row input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease;
}

.agreement-row input[type="checkbox"]::after {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #555555;
}

.agreement-row input[type="checkbox"]:checked {
    background: #FE993C;
    border-color: #FE993C;
}

.agreement-row input[type="checkbox"]:checked::before {
    transform: translateX(30px);
}

.agreement-row input[type="checkbox"]:checked::after {
    left: 10px;
    right: auto;
    color: #ffffff;
}

.agreement-row input[type="checkbox"]:focus-visible {
    outline: 2px solid rgba(254, 153, 60, 0.35);
    outline-offset: 2px;
}

.agreement-text {
    font-size: 13px;
    color: #333;
    max-width: none;
    margin: 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.beneficiary-block label.check-item {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: flex-start !important;
    text-align: left !important;
}

.beneficiary-block label.check-item input {
    margin: 0;
    flex: 0 0 auto;
}

.beneficiary-block label.check-item span {
    flex: 0 1 auto;
    margin-left: 0 !important;
    margin-right: auto;
    text-align: left !important;
}

.tight-subtitle {
    margin-top: -15px;
}

.two-col-row {
    grid-template-columns: repeat(2, 1fr);
}

.three-col-row {
    grid-template-columns: repeat(3, 1fr);
}

.ownership-row {
    margin-bottom: 28px;
}

.ownership-label {
    margin-bottom: 0;
}

.ownership-check {
    margin-bottom: 0;
}

.others-label {
    min-width: 50px;
}

.if-building-note {
    font-size: 14px;
    font-weight: 700;
    color: #FE993C;
    margin-bottom: 10px;
}

.driver-subtitle {
    font-size: 16px;
    margin-top: 0;
}

.poda-item {
    margin-top: 5px;
}

.submit-btn {
    background-color: #FE993C;
    color: #ffffff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
}

.submit-btn:hover {
    background-color: #e8872f;
}

.submit-btn:disabled {
    background-color: #f0b780;
    color: #ffffff;
    cursor: not-allowed;
    opacity: 0.7;
}

.submit-btn:disabled:hover {
    background-color: #f0b780;
}

/* Responsiveness */
@media (max-width: 768px) {
    .application-main {
        min-height: 0;
        align-items: flex-start;
        padding: 18px 12px 28px;
    }

    .application-card {
        width: 100%;
        padding: 24px 18px;
    }

    .main-head.application-card {
        margin-top: 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row input,
    .form-row select,
    .form-row textarea,
    .form-control {
        font-size: 16px;
    }

    .full-width,
    .phone,
    .span-3,
    .tablet-full {
        grid-column: span 2;
    }
    .agreement-text {
        max-width: 100%;
    }

    .submit-btn {
        width: 100%;
        min-height: 46px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .application-card {
        padding: 18px 14px;
        border-radius: 10px;
    }
    .form-title {
        font-size: 22px;
    }
    .centered-section, .section-title {
        font-size: 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .full-width,
    .phone,
    .span-3,
    .tablet-full {
        grid-column: span 1;
    }
    .agreement-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .submit-btn {
        width: 100%;
        text-align: center;
    }
}
