:root {
    --navy: #071120;
    --navy-soft: #0d1b2f;
    --orange: #ff7a35;
    --pink: #f83b63;
    --purple: #6423b6;
    --bg: #f5f7fb;
    --white: #ffffff;
    --text: #101828;
    --muted: #667085;
    --border: #e4e7ec;
    --shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(248, 59, 99, 0.08), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 122, 53, 0.10), transparent 26%),
        var(--bg);
    color: var(--text);
}

.topbar {
    height: 100px;
    background: linear-gradient(180deg, #071120 0%, #081426 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 58px;
    box-shadow: 0 10px 30px rgba(7, 17, 32, 0.22);
}

.brand img {
    height: 110px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -22px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--pink), var(--orange));
}

.btn-header,
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    text-decoration: none;
    font-weight: 800;
    border-radius: 999px;
    box-shadow: 0 16px 30px rgba(248, 59, 99, 0.22);
}

.btn-header {
    padding: 18px 26px;
    font-size: 17px;
}

.container {
    max-width: 1420px;
    margin: 0 auto;
    padding: 76px 52px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #98a2b3;
    font-weight: 700;
    margin-bottom: 34px;
}

.breadcrumb a {
    color: var(--purple);
    text-decoration: none;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 46px;
}

.page-header h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1px;
}

.page-header p {
    margin: 14px 0 0;
    color: #475467;
    font-size: 20px;
}

.btn-primary {
    padding: 22px 36px;
    font-size: 19px;
}

.btn-primary span {
    font-size: 28px;
    line-height: 0;
    margin-top: -2px;
}

.table-card {
    background: white;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(228, 231, 236, 0.7);
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead th {
    background: var(--navy);
    color: white;
    text-align: left;
    padding: 28px 30px;
    font-size: 18px;
}

thead th:first-child {
    width: 160px;
}

thead th:last-child {
    width: 360px;
}

tbody td {
    padding: 30px;
    border-top: 1px solid var(--border);
    font-size: 18px;
    vertical-align: middle;
}

tbody tr:hover {
    background: #fafbff;
}

.client-name {
    font-weight: 900;
    margin-bottom: 10px;
}

.client-location {
    color: var(--muted);
    font-size: 16px;
}

.date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-weight: 700;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 15px 22px;
    border: 1.5px solid #8b5cf6;
    border-radius: 12px;
    color: var(--purple);
    text-decoration: none;
    font-weight: 800;
    background: white;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #f4efff;
    transform: translateY(-1px);
}

.empty {
    text-align: center;
    color: var(--muted);
    padding: 40px;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-weight: 800;
    margin-bottom: 9px;
}

input,
textarea {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 16px;
    font-family: inherit;
}

textarea {
    min-height: 130px;
}

button,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: linear-gradient(135deg, var(--pink), var(--orange));
    color: white;
    font-weight: 800;
    padding: 15px 24px;
    border-radius: 999px;
    cursor: pointer;
    text-decoration: none;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 34px;
}

.info-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px;
    box-shadow: var(--shadow);
}

.info-box span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 7px;
}

.info-box strong {
    font-size: 17px;
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.phase-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.phase-card h3 {
    font-size: 18px;
    margin: 0 0 14px;
}

.estado {
    display: inline-block;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.estado-pendiente {
    background: #f2f4f7;
    color: #475467;
}

.estado-en-curso {
    background: #fff3e8;
    color: #b54708;
}

.estado-bloqueada {
    background: #ffe4e8;
    color: #b42318;
}

.estado-completada {
    background: #dcfae6;
    color: #067647;
}

@media (max-width: 900px) {
    .topbar {
        height: auto;
        padding: 26px;
        flex-direction: column;
        gap: 22px;
    }

    .brand img {
        height: 50px;
    }

    .container {
        padding: 42px 22px;
    }

    .page-header,
    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-grid,
    .info-grid,
    .phase-grid {
        grid-template-columns: 1fr;
    }

    table {
        min-width: 850px;
    }

    .table-card {
        overflow-x: auto;
    }
}

.icon-location,
.icon-calendar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    margin-right: 6px;
    font-size: 16px;
    line-height: 1;
}

.client-location,
.date {
    display: inline-flex;
    align-items: center;
}

.phase-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #8b5cf6;
    background: white;
    color: var(--purple);
    font-weight: 800;
    padding: 13px 20px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: #f4efff;
    transform: translateY(-1px);
}

.muted {
    color: var(--muted);
}

select {
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 16px;
    font-family: inherit;
    background: white;
}

.header-actions {
    display: flex;
    gap: 14px;
}

.commercial-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 24px;
    align-items: start;
}

.commercial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.commercial-card h2 {
    margin-top: 0;
    margin-bottom: 26px;
    font-size: 22px;
}

.summary-row {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.summary-row span {
    color: var(--muted);
    font-weight: 700;
}

.summary-row strong {
    color: var(--text);
    font-weight: 900;
}

.commercial-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 22px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.form-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--purple);
}

.form-check label {
    margin: 0;
    font-weight: 800;
}

.badge-ok,
.badge-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 900;
}

.badge-ok {
    background: #dcfae6;
    color: #067647;
}

.badge-no {
    background: #ffe4e8;
    color: #b42318;
}

.timeline-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    position: relative;
    margin-bottom: 28px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 32px;
    bottom: -28px;
    width: 2px;
    background: #d0d5dd;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-item > span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid #d0d5dd;
    background: white;
    margin-top: 2px;
}

.timeline-item.done > span {
    border-color: #12b76a;
    background: #12b76a;
}

.timeline-item.done > span::after {
    content: "✓";
    display: block;
    color: white;
    font-weight: 900;
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}

.timeline-item strong {
    display: block;
    font-weight: 900;
    margin-bottom: 5px;
}

.timeline-item small {
    color: var(--muted);
    font-weight: 700;
}

.observations-card {
    grid-column: 1 / 3;
}

.observations-card textarea {
    width: 100%;
    min-height: 170px;
    margin-top: 12px;
    border-color: #8b5cf6;
}

.fixed-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 28px;
}

@media (max-width: 1100px) {
    .commercial-layout {
        grid-template-columns: 1fr;
    }

    .observations-card {
        grid-column: auto;
    }

    .commercial-form-grid {
        grid-template-columns: 1fr;
    }

    .fixed-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

.documents-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 26px;
}

.document-upload {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    background: #fafbff;
}

.document-upload label {
    display: block;
    font-weight: 900;
    margin-bottom: 12px;
}

.document-upload input[type="file"] {
    width: 100%;
    background: white;
}

.document-upload a {
    display: inline-block;
    margin-top: 12px;
    font-weight: 800;
    color: var(--purple);
    text-decoration: none;
}

.document-upload a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .documents-grid {
        grid-template-columns: 1fr;
    }
}

.legalizacion-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start;
}

.legal-main-card {
    min-height: 100%;
}

.legal-check-header,
.legal-check-row {
    display: grid;
    grid-template-columns: 34px 52px 1.4fr 1.1fr 0.9fr;
    gap: 18px;
    align-items: center;
}

.legal-check-header {
    color: var(--muted);
    margin-bottom: 8px;
    padding: 0 0 10px;
}

.legal-check-row {
    padding: 22px 0;
    border-top: 1px solid var(--border);
}

.legal-check-row:first-of-type {
    border-top: none;
}

.legal-check-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--purple);
}

.legal-check-row select,
.legal-check-row input[type="date"] {
    width: 100%;
}

.legal-icon {
    width: 42px;
    height: 42px;
    background: #eee7ff;
    color: var(--purple);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
}

.legal-docs-card,
.legal-observations-card,
.legal-actions {
    grid-column: 1 / -1;
}

.legal-docs-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.legal-doc-item {
    border-right: 1px solid var(--border);
    padding-right: 20px;
}

.legal-doc-item:last-child {
    border-right: none;
}

.legal-doc-item strong {
    display: block;
    min-height: 42px;
    margin-bottom: 14px;
}

.file-box {
    display: flex;
    gap: 14px;
    align-items: center;
    border: 1.5px dashed #c7b7ff;
    border-radius: 14px;
    padding: 16px;
    cursor: pointer;
    color: var(--purple);
    font-weight: 900;
    background: #fbfaff;
}

.file-box span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-box small {
    color: var(--muted);
}

.file-box input {
    display: none;
}

.legal-doc-item p {
    color: var(--muted);
    font-size: 14px;
    margin-top: 14px;
}

.legal-doc-item a {
    color: var(--purple);
    font-weight: 800;
    text-decoration: none;
}

.legal-observations-card textarea {
    width: 100%;
    min-height: 95px;
}

@media (max-width: 1200px) {
    .legalizacion-layout {
        grid-template-columns: 1fr;
    }

    .legal-docs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .legal-check-header {
        display: none;
    }

    .legal-check-row {
        grid-template-columns: 34px 52px 1fr;
    }

    .legal-check-row select,
    .legal-check-row input[type="date"] {
        grid-column: 3;
    }
}

@media (max-width: 700px) {
    .legal-docs-grid {
        grid-template-columns: 1fr;
    }

    .legal-doc-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-bottom: 20px;
    }
}

.cierre-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 24px;
    align-items: start;
}

.cierre-main-card {
    min-height: 100%;
}

.cierre-check-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.cierre-check-card {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 14px;
    align-items: flex-start;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    background: #fafbff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cierre-check-card:hover {
    border-color: #8b5cf6;
    transform: translateY(-1px);
}

.cierre-check-card input {
    width: 20px;
    height: 20px;
    accent-color: var(--purple);
    margin-top: 3px;
}

.cierre-check-card strong {
    display: block;
    font-weight: 900;
    margin-bottom: 6px;
}

.cierre-check-card small {
    color: var(--muted);
    font-weight: 700;
}

.cierre-data-card,
.cierre-review-card,
.cierre-opportunities-card,
.cierre-observations-card {
    grid-column: 1 / -1;
}

.review-copy-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    margin: 14px 0 10px;
}

.review-copy-box input {
    background: #f9fafb;
    font-weight: 800;
    color: var(--purple);
}

.opportunities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.opportunity-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #c7b7ff;
    border-radius: 999px;
    padding: 12px 18px;
    background: #fbfaff;
    color: var(--purple);
    font-weight: 900;
    cursor: pointer;
}

.opportunity-chip input {
    width: 17px;
    height: 17px;
    accent-color: var(--purple);
}

.cierre-observations-card textarea {
    width: 100%;
    min-height: 130px;
}

@media (max-width: 1100px) {
    .cierre-layout {
        grid-template-columns: 1fr;
    }

    .cierre-check-grid {
        grid-template-columns: 1fr;
    }

    .review-copy-box {
        grid-template-columns: 1fr;
    }
}

.login-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(248, 59, 99, 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(255, 122, 53, 0.20), transparent 32%),
        var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.login-card {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: 28px;
    padding: 42px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.login-logo {
    background: var(--navy);
    border-radius: 22px;
    padding: 24px;
    margin-bottom: 28px;
    text-align: center;
}

.login-logo img {
    max-width: 260px;
    width: 100%;
    height: auto;
}

.login-card h1 {
    margin: 0 0 8px;
    font-size: 34px;
}

.login-card p {
    color: var(--muted);
    margin-bottom: 28px;
}

.login-error {
    background: #ffe4e8;
    color: #b42318;
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 800;
    margin-bottom: 20px;
}

.login-btn {
    width: 100%;
    margin-top: 20px;
}

/* =========================================================
   RESPONSIVE CRM JUPITER SOLAR
   ========================================================= */

/* Tablets grandes */
@media (max-width: 1300px) {

    .container {
        max-width: 100%;
        padding: 52px 32px;
    }

    .commercial-layout,
    .cierre-layout,
    .legalizacion-layout {
        grid-template-columns: 1fr;
    }

    .summary-card,
    .form-card,
    .checklist-card,
    .legal-main-card,
    .cierre-main-card {
        width: 100%;
    }

    .observations-card,
    .legal-docs-card,
    .legal-observations-card,
    .cierre-data-card,
    .cierre-review-card,
    .cierre-opportunities-card,
    .cierre-observations-card {
        grid-column: auto;
    }

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


/* Tablets y móviles horizontales */
@media (max-width: 900px) {

    body {
        font-size: 15px;
    }

    .topbar {
        height: auto;
        padding: 22px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .brand img {
        height: 72px;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 16px;
        justify-content: flex-start;
    }

    .nav-link.active::after {
        bottom: -8px;
    }

    .btn-header {
        padding: 14px 20px;
        font-size: 15px;
    }

    .container {
        padding: 36px 20px;
    }

    .breadcrumb {
        flex-wrap: wrap;
        font-size: 14px;
        margin-bottom: 22px;
    }

    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
    }

    .page-header h1,
    .page-title {
        font-size: 34px;
    }

    .page-header p {
        font-size: 17px;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 17px 24px;
        font-size: 17px;
    }

    .header-actions {
        width: 100%;
    }

    .header-actions .btn-secondary {
        width: 100%;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .phase-grid {
        grid-template-columns: 1fr;
    }

    .phase-card {
        padding: 22px;
    }

    .phase-actions {
        gap: 12px;
    }

    .phase-actions .btn,
    .phase-actions .btn-secondary {
        width: 100%;
    }

    .commercial-card {
        padding: 24px;
        border-radius: 20px;
    }

    .commercial-form-grid {
        grid-template-columns: 1fr;
    }

    .summary-row {
        grid-template-columns: 1fr;
        gap: 6px;
        margin-bottom: 18px;
    }

    .fixed-actions {
        position: sticky;
        bottom: 0;
        z-index: 20;
        background: rgba(245, 247, 251, 0.96);
        backdrop-filter: blur(10px);
        padding: 16px 0;
        margin-top: 24px;
        flex-direction: column;
    }

    .fixed-actions .btn-primary,
    .fixed-actions .btn-secondary {
        width: 100%;
    }

    /* Tabla principal en móvil */
    .table-card {
        overflow: visible;
        background: transparent;
        box-shadow: none;
        border: none;
    }

    .table-card table,
    .table-card thead,
    .table-card tbody,
    .table-card th,
    .table-card td,
    .table-card tr {
        display: block;
        width: 100%;
    }

    .table-card thead {
        display: none;
    }

    .table-card tbody tr {
        background: white;
        border: 1px solid var(--border);
        border-radius: 20px;
        margin-bottom: 18px;
        padding: 20px;
        box-shadow: var(--shadow);
    }

    .table-card tbody td {
        border: none;
        padding: 10px 0;
        font-size: 16px;
    }

    .table-card tbody td:first-child::before {
        content: "ID";
        display: block;
        color: var(--muted);
        font-weight: 800;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .table-card tbody td:nth-child(2)::before {
        content: "Cliente";
        display: block;
        color: var(--muted);
        font-weight: 800;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .table-card tbody td:nth-child(3)::before {
        content: "Fecha de alta";
        display: block;
        color: var(--muted);
        font-weight: 800;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .table-card tbody td:nth-child(4)::before {
        content: "Acciones";
        display: block;
        color: var(--muted);
        font-weight: 800;
        font-size: 13px;
        margin-bottom: 8px;
    }

    .btn-outline {
        width: 100%;
    }
}


/* Legalización responsive */
@media (max-width: 900px) {

    .legal-check-header {
        display: none;
    }

    .legal-check-row {
        grid-template-columns: 28px 44px 1fr;
        gap: 14px;
        padding: 20px 0;
    }

    .legal-check-row strong {
        font-size: 15px;
    }

    .legal-check-row select,
    .legal-check-row input[type="date"] {
        grid-column: 1 / -1;
        width: 100%;
    }

    .legal-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .legal-docs-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .legal-doc-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 0 0 18px;
    }

    .legal-doc-item:last-child {
        border-bottom: none;
    }

    .file-box {
        width: 100%;
    }
}


/* Cierre responsive */
@media (max-width: 900px) {

    .cierre-check-grid {
        grid-template-columns: 1fr;
    }

    .review-copy-box {
        grid-template-columns: 1fr;
    }

    .opportunities-grid {
        flex-direction: column;
    }

    .opportunity-chip {
        width: 100%;
        justify-content: flex-start;
    }
}


/* Móviles pequeños */
@media (max-width: 520px) {

    .container {
        padding: 28px 14px;
    }

    .topbar {
        padding: 18px;
    }

    .brand img {
        height: 58px;
    }

    .nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .nav-link {
        font-size: 15px;
    }

    .btn-header {
        width: 100%;
        justify-content: center;
    }

    .page-header h1,
    .page-title {
        font-size: 30px;
    }

    .page-header p {
        font-size: 16px;
    }

    .commercial-card,
    .info-box,
    .phase-card {
        padding: 20px;
    }

    .commercial-card h2 {
        font-size: 20px;
    }

    input,
    textarea,
    select {
        font-size: 16px;
        width: 100%;
    }

    .login-card {
        padding: 28px;
        border-radius: 22px;
    }

    .login-card h1 {
        font-size: 30px;
    }

    .login-logo img {
        max-width: 220px;
    }

    .login-logo {
        padding: 20px;
    }
}
