:root {
    --page-background: #eef3f6;
    --surface: #ffffff;
    --surface-muted: #f5f8fa;
    --header: #07546f;
    --header-dark: #043e54;
    --header-light: #0c6f91;
    --accent: #b5d0da;
    --accent-dark: #accbd7;
    --accent-soft: #d9f0f9;
    --green: #60ba2b;
    --yellow: #f1c40f;
    --text: #21333c;
    --text-muted: #687a84;
    --border: #d5e0e6;
    --border-dark: #bfd0d9;
    --row-a: #e4f2f8;
    --row-b: #d2e6ef;
    --danger: #c44242;
    --radius: 4px;
    --content-width: 1440px;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--page-background);
    color: var(--text);
    font-family:
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

a {
    color: inherit;
}

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

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

.site-shell {
    width: min(calc(100% - 36px), var(--content-width));
    margin-inline: auto;
}

/* --------------------------------------------------
   Header
-------------------------------------------------- */

.site-header {
    border-bottom: 5px solid #b7cbd5;
}

.account-bar {
    min-height: 34px;
    background: #d7e1e6;
    border-bottom: 1px solid #c3d0d6;
}

.account-bar-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.account-welcome {
    color: #586b75;
    font-size: 13px;
}

.account-links {
    display: flex;
    align-items: stretch;
    min-height: 34px;
}

.account-links a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 13px;
    border-left: 1px solid #c0cdd3;
    color: #16475b;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.account-links a:last-child {
    border-right: 1px solid #c0cdd3;
}

.account-links a:hover {
    background: #edf3f6;
}

.main-header {
    background:
        linear-gradient(
            180deg,
            var(--header-light) 0%,
            var(--header) 45%,
            var(--header-dark) 100%
        );
}

.main-header-inner {
    min-height: 118px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.site-logo {
    flex: 0 0 auto;
    text-decoration: none;
}

.site-logo img {
    width: 250px;
    max-height: 100px;
    object-fit: contain;
    object-position: left center;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-navigation a {
    position: relative;
    padding: 15px 16px;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    right: 14px;
    bottom: 8px;
    left: 14px;
    height: 2px;
    background: transparent;
}

.main-navigation a:hover,
.main-navigation a.active {
    background: rgb(255 255 255 / 0.08);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    background: #7ed8ff;
}

.mobile-menu-button {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 13px;
    border: 1px solid rgb(255 255 255 / 0.3);
    border-radius: var(--radius);
    background: rgb(255 255 255 / 0.08);
    color: #ffffff;
    cursor: pointer;
}

/* --------------------------------------------------
   Homepage
-------------------------------------------------- */

.homepage-content {
    padding-block: 28px 55px;
}

.launch-banner {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    padding: 12px 15px;
    border: 1px solid #b8dbe8;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    background: #dff3fa;
    color: #315c6d;
}

.launch-banner > i {
    color: var(--accent-dark);
    font-size: 20px;
}

.launch-banner div {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
}

.launch-banner strong {
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.launch-banner span {
    color: #5f7782;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-bottom: 34px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border);
}

.intro-card {
    display: flex;
    gap: 15px;
    min-height: 190px;
    padding: 24px;
    background: var(--surface);
}

.intro-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 19px;
}

.intro-card h1,
.intro-card h2 {
    margin: 0 0 10px;
    color: #102f3d;
    font-size: 21px;
    font-weight: 650;
    line-height: 1.25;
}

.intro-card p {
    margin: 0;
    color: var(--text-muted);
}

.rooms-section {
    margin-top: 28px;
}

.community-section {
    margin-top: 38px;
}

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

.section-kicker {
    display: block;
    margin-bottom: 1px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    color: #173743;
    font-size: 25px;
    line-height: 1.25;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.text-link:hover {
    text-decoration: underline;
}

.primary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 8px 15px;
    border: 1px solid var(--accent-dark);
    border-radius: var(--radius);
    background: var(--accent);
    color: #000000;
    font-weight: 700;
    text-decoration: none;
}

.primary-button:hover {
    background: var(--accent-dark);
}

.room-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    background: var(--surface);
}

.room-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.room-table th,
.room-table td {
    padding: 12px 14px;
    border-right: 1px solid rgb(255 255 255 / 0.75);
    border-bottom: 1px solid rgb(255 255 255 / 0.8);
    text-align: left;
    vertical-align: middle;
}

.room-table th:last-child,
.room-table td:last-child {
    border-right: 0;
}

.room-table tbody tr:last-child td {
    border-bottom: 0;
}

.room-table thead th {
    background: #f6f9fa;
    color: #4b626d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.room-table tbody tr {
    background: var(--row-a);
}

.room-table tbody tr:nth-child(even) {
    background: var(--row-b);
}

.room-table tbody tr:hover {
    background: #f4fbfe;
}

.room-table tbody tr.featured-room td:first-child {
    border-left: 4px solid var(--yellow);
}

.room-table tbody tr.official-room td:first-child {
    border-left: 4px solid var(--green);
}

.users-column {
    width: 74px;
    text-align: center !important;
}

.join-column {
    width: 78px;
    text-align: center !important;
}

.user-count {
    display: inline-grid;
    min-width: 34px;
    height: 28px;
    place-items: center;
    color: #164b61;
    font-size: 13px;
    font-weight: 800;
}

.room-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #173743;
    font-weight: 800;
    text-decoration: none;
}

.room-name:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.room-name i {
    color: var(--accent-dark);
}

.official-room-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    display: inline-block;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 8px;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 3px 9px;
    border: 1px solid rgb(7 84 111 / 0.14);
    border-radius: 999px;
    background: rgb(255 255 255 / 0.58);
    color: #355764;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.join-button {
    display: inline-flex;
    justify-content: center;
    min-width: 54px;
    padding: 6px 10px;
    border: 1px solid var(--accent-dark);
    border-radius: var(--radius);
    background: var(--accent);
    color: #000000;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.join-button:hover {
    background: var(--accent-dark);
}

.community-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin-top: 42px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--border);
}

.community-summary article {
    display: grid;
    grid-template-columns: 42px 1fr;
    align-items: center;
    column-gap: 12px;
    padding: 20px;
    background: var(--surface);
}

.community-summary i {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 17px;
}

.community-summary strong {
    color: #163b4a;
    font-size: 23px;
    line-height: 1.1;
}

.community-summary span {
    color: var(--text-muted);
    font-size: 13px;
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */

.site-footer {
    border-top: 5px solid #b7cbd5;
    background: #073f55;
    color: #dcebf1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-block: 42px;
}

.footer-logo {
    width: 230px;
    max-height: 92px;
    margin-bottom: 16px;
    object-fit: contain;
    object-position: left center;
}

.footer-grid p {
    max-width: 520px;
    margin: 0;
    color: #b7d0da;
}

.footer-grid h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 16px;
}

.footer-grid nav {
    display: grid;
    gap: 7px;
}

.footer-grid nav a {
    color: #b7d0da;
    text-decoration: none;
}

.footer-grid nav a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgb(255 255 255 / 0.11);
    background: #053548;
}

.footer-bottom .site-shell {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #9ebbc7;
    font-size: 13px;
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

@media (max-width: 980px) {
    .main-header-inner {
        min-height: 100px;
    }

    .site-logo img {
        width: 210px;
    }

    .mobile-menu-button {
        display: inline-flex;
    }

    .main-navigation {
        position: absolute;
        z-index: 10;
        top: 134px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px;
        border: 1px solid #174f65;
        border-radius: var(--radius);
        background: #06465f;
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        padding: 11px 13px;
    }

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

    .intro-card {
        min-height: 0;
    }

    .community-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .site-shell {
        width: min(calc(100% - 24px), var(--content-width));
    }

    .account-bar-inner {
        justify-content: flex-end;
    }

    .account-welcome {
        display: none;
    }

    .account-links {
        width: 100%;
        justify-content: flex-end;
    }

    .account-links a {
        padding-inline: 9px;
        font-size: 0;
    }

    .account-links a i {
        font-size: 13px;
    }

    .main-header-inner {
        min-height: 88px;
    }

    .site-logo img {
        width: 176px;
    }

    .homepage-content {
        padding-top: 20px;
    }

    .launch-banner {
        align-items: flex-start;
    }

    .launch-banner div {
        display: block;
    }

    .launch-banner span {
        display: block;
        margin-top: 3px;
    }

    .intro-card {
        padding: 19px;
    }

    .section-heading {
        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 22px;
    }

    .primary-button {
        min-height: 38px;
        padding: 7px 11px;
        font-size: 13px;
    }

    .community-summary {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-block: 34px;
    }

    .footer-bottom .site-shell {
        min-height: 70px;
        flex-direction: column;
        justify-content: center;
        gap: 2px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .site-logo img {
        width: 150px;
    }

    .mobile-menu-button span {
        display: none;
    }

    .intro-card {
        display: block;
    }

    .intro-icon {
        margin-bottom: 12px;
    }

    .section-heading {
        display: block;
    }

    .section-heading .text-link,
    .section-heading .primary-button {
        margin-top: 10px;
    }
}

        .room-actions {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            flex-wrap: wrap;
        }

        .room-filter {
            margin: 0;
        }

        .room-filter-select-wrap {
            position: relative;
            display: flex;
            align-items: center;
        }

        .room-filter-select-wrap > i {
            position: absolute;
            left: 13px;
            color: #44768b;
            font-size: 13px;
            pointer-events: none;
        }

        .room-filter select {
            min-width: 210px;
            height: 42px;
            padding: 0 36px 0 36px;
            border: 1px solid #b9cbd3;
            border-radius: 4px;
            background-color: #ffffff;
            color: #233c48;
            font-family: inherit;
            font-size: 14px;
            font-weight: 700;
            cursor: pointer;
        }

        .room-filter select:hover {
            border-color: #73a9bc;
        }

        .room-filter select:focus {
            outline: 2px solid rgba(20, 126, 164, 0.18);
            border-color: #147ea4;
        }

        .room-results-message {
            margin: 0 0 14px;
            color: #607681;
            font-size: 13px;
        }

        .room-results-message strong {
            color: #263f4a;
        }

        .empty-room-row td {
            padding: 34px 20px;
            text-align: center;
        }

        .empty-room-message {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #607681;
            font-weight: 700;
        }

        .empty-room-message i {
            color: #147ea4;
        }

        @media (max-width: 760px) {
            .section-heading {
                align-items: flex-start;
            }

            .room-actions {
                width: 100%;
                justify-content: stretch;
            }

            .room-filter {
                flex: 1 1 100%;
            }

            .room-filter-select-wrap,
            .room-filter select {
                width: 100%;
            }

            .room-actions .primary-button {
                flex: 1 1 100%;
                justify-content: center;
            }
        }


.account-member {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.account-member-avatar {
    width: 26px;
    height: 26px;
    display: block;
    flex: 0 0 26px;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    object-fit: cover;
}

.account-welcome strong {
    color: #ffffff;
}

.account-sign-in,
.account-sign-out {
    font-weight: 700;
}

@media (max-width: 700px) {
    .account-member span {
        display: none;
    }

    .account-member-avatar {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
    }
}

/* --------------------------------------------------
   Sign In
-------------------------------------------------- */

.hp-field,
.chatnetuk-honeypot {
    position: absolute !important;
    top: auto !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.signin-body {
    min-height: 100vh;
    background:
        linear-gradient(
            145deg,
            var(--surface-muted) 0%,
            var(--page-background) 100%
        );
}

.signin-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.signin-header {
    background: var(--surface);
    border-bottom: 5px solid #b7cbd5;
}

.signin-header-inner {
    width: min(calc(100% - 36px), 1120px);
    min-height: 88px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.signin-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.signin-logo img {
    width: 230px;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.signin-home-link,
.back-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--header);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.signin-home-link:hover,
.back-home:hover {
    color: var(--header-light);
    text-decoration: underline;
}

.signin-main {
    width: 100%;
    flex: 1;
    display: grid;
    place-items: center;
    padding: 48px 18px;
}

.signin-card {
    width: min(100%, 480px);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
}

.signin-card-header,
.signin-card-top {
    padding: 31px 35px 27px;
    background:
        linear-gradient(
            145deg,
            var(--header-light) 0%,
            var(--header) 58%,
            var(--header-dark) 100%
        );
    color: #ffffff;
    text-align: center;
}

.signin-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border: 2px solid rgb(255 255 255 / 0.35);
    border-radius: 50%;
    background: rgb(255 255 255 / 0.12);
    font-size: 26px;
}

.signin-card-header h1,
.signin-card-top h1 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.signin-card-header p,
.signin-card-top p {
    max-width: 360px;
    margin: 0 auto;
    color: rgb(255 255 255 / 0.84);
    font-size: 14px;
    line-height: 1.6;
}

.signin-card-body {
    padding: 32px 35px 35px;
}

.signin-alert,
.signin-error {
    margin: 0 0 22px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-radius: var(--radius);
    font-size: 14px;
    line-height: 1.5;
}

.signin-alert i,
.signin-error i {
    margin-top: 3px;
    flex: 0 0 auto;
}

.signin-alert-error,
.signin-error {
    border: 1px solid var(--danger);
    border-left-width: 4px;
    background: #fff0f0;
    color: #923232;
}

.signin-form {
    margin: 0;
}

.signin-form-group,
.form-group {
    margin-bottom: 20px;
}

.signin-label,
.form-label {
    margin-bottom: 8px;
    display: block;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
}

.signin-input-wrap,
.input-wrap {
    position: relative;
}

.signin-input-wrap > i,
.input-wrap > i {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 15px;
    color: var(--text-muted);
    transform: translateY(-50%);
    pointer-events: none;
}

.signin-input,
.form-control {
    width: 100%;
    height: 48px;
    padding: 10px 44px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--text);
    outline: none;
    transition:
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease;
}

.signin-input:hover,
.form-control:hover {
    border-color: var(--accent-dark);
}

.signin-input:focus,
.form-control:focus {
    border-color: var(--header-light);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgb(12 111 145 / 0.14);
}

.signin-password-input {
    padding-right: 50px;
}

.signin-password-toggle,
.password-toggle {
    position: absolute;
    top: 50%;
    right: 6px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transform: translateY(-50%);
}

.signin-password-toggle:hover,
.signin-password-toggle:focus-visible,
.password-toggle:hover,
.password-toggle:focus-visible {
    background: var(--accent-soft);
    color: var(--header);
    outline: none;
}

.signin-options {
    margin: -1px 0 23px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.signin-remember,
.remember-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
}

.signin-remember input,
.remember-label input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--header-light);
}

.signin-forgot-link,
.forgot-link {
    color: var(--header-light);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.signin-forgot-link:hover,
.forgot-link:hover {
    color: var(--header);
    text-decoration: underline;
}

.signin-submit,
.signin-button {
    width: 100%;
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 10px 18px;
    border: 1px solid #4da01f;
    border-radius: var(--radius);
    background: var(--green);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.signin-submit:hover,
.signin-button:hover {
    border-color: #438f1b;
    background: #52a824;
}

.signin-submit:focus-visible,
.signin-button:focus-visible {
    outline: 3px solid rgb(96 186 43 / 0.25);
    outline-offset: 2px;
}

.signin-divider {
    margin: 28px 0 19px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.signin-divider::before,
.signin-divider::after {
    height: 1px;
    flex: 1;
    background: var(--border);
    content: "";
}

.signin-register-message,
.register-message {
    margin: 0 0 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.register-message a {
    color: var(--header-light);
    font-weight: 700;
    text-decoration: none;
}

.register-message a:hover {
    color: var(--header);
    text-decoration: underline;
}

.signin-register-button {
    width: 100%;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 17px;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    background: var(--surface-muted);
    color: var(--header);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.signin-register-button:hover {
    border-color: var(--accent-dark);
    background: var(--accent-soft);
}

.signin-footer {
    padding: 22px 18px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
}

.signin-footer p {
    margin: 0;
}

/* --------------------------------------------------
   Sign In Responsive
-------------------------------------------------- */

@media (max-width: 560px) {
    .signin-header-inner {
        width: calc(100% - 24px);
        min-height: 72px;
    }

    .signin-logo img {
        width: 185px;
        max-height: 55px;
    }

    .signin-home-link span,
    .back-home span {
        display: none;
    }

    .signin-home-link,
    .back-home {
        width: 40px;
        height: 40px;
        justify-content: center;
        border: 1px solid var(--border-dark);
        border-radius: var(--radius);
    }

    .signin-main {
        padding: 27px 12px;
    }

    .signin-card-header,
    .signin-card-top {
        padding: 26px 22px 23px;
    }

    .signin-card-body {
        padding: 27px 22px 29px;
    }

    .signin-icon {
        width: 58px;
        height: 58px;
        font-size: 23px;
    }

    .signin-card-header h1,
    .signin-card-top h1 {
        font-size: 25px;
    }

    .signin-options {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}