@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;500;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

.account-page {
    min-height: 100vh;
    margin: 0;
    color: #2e2c2b;
    font-family: "Space Grotesk", sans-serif;
}

.account-page::before {
    position: fixed;
    inset: 0;
    content: "";
    background: rgba(255, 255, 255, 0.78);
    pointer-events: none;
}

.account-shell {
    position: relative;
    z-index: 1;
    width: min(100% - 32px, 1080px);
    min-height: 100vh;
    margin: auto;
    padding: 48px 0;
}

.account-card {
    overflow: hidden;
    border: 0;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 18px 55px rgba(46, 44, 43, 0.16);
}

.account-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 30px;
    color: #fff;
    background: #2e2c2b;
}

.account-brand img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.account-brand strong {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 22px;
    letter-spacing: 0;
}

.account-content {
    padding: 32px;
}

.account-content h1,
.account-page h2 {
    color: #2e2c2b;
    font-family: "Roboto Condensed", sans-serif;
    letter-spacing: 0;
}

.account-content h1 {
    margin-bottom: 24px;
    font-size: 34px;
}

.account-content .form-control,
.account-content .form-select {
    min-height: 46px;
    border-color: #ddd3c8;
    border-radius: 2px;
}

.account-content .form-control:focus,
.account-content .form-select:focus {
    border-color: #b47b4b;
    box-shadow: 0 0 0 0.2rem rgba(180, 123, 75, 0.16);
}

.account-content .btn-primary {
    border-color: #b47b4b;
    background: #b47b4b;
}

.account-content .btn-primary:hover {
    border-color: #2e2c2b;
    background: #2e2c2b;
}

.admin-page .account-shell {
    width: min(100% - 32px, 1180px);
}

.admin-page .card {
    border: 0;
    border-radius: 3px;
    box-shadow: 0 8px 26px rgba(46, 44, 43, 0.1);
}

.admin-page .table {
    margin-bottom: 0;
}

.admin-page .table thead th {
    color: #fff;
    background: #2e2c2b;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 500;
}

@media (max-width: 576px) {
    .account-shell {
        width: min(100% - 20px, 1080px);
        padding: 20px 0;
    }

    .account-brand,
    .account-content {
        padding: 22px;
    }
}
