.account-page {
    display: block;
    max-width: 480px;
    margin: 2rem auto;
    padding: 1rem;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.account-page h1,
.account-page h2,
.account-page h3 {
    text-align: center;
    margin-bottom: 1rem;
}


.account-page .id-wrapper {
    font-size: .75rem;
    font-weight: 300;
    color: rgba(0,0,0,.75);
    cursor: pointer;
    text-align: center;
    margin: 2rem auto;
}

body.dark .account-page .id-wrapper {
    color: rgba(255,255,255,.75);
}

.account-page .id-wrapper input {
    display: inline;
    border: 0;
    margin: 0;
    padding: 0;
    width: 21em;
    font-size: inherit;
    cursor: pointer;
}
body.dark .account-page .id-wrapper input {
    background: transparent;
    color: inherit;
}

.login-page .login-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}
.login-page .sidebar-login-button-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-page #appleid-signin {
    width: 100% !important;
    max-width: 375px;
    height: 38px !important;
}
.login-page .sidebar-login-button-container {
    height: 38px;
    width: 100%;
}
.login-page .sidebar-login-button-wrapper > * {
    width: 100% !important;
}
.premium-benefits ul {
    margin: 0.5rem 0;
    padding-left: 1.25rem;
}

body.dark .premium-benefits a {
    color: #3696e9;
    text-decoration: underline;
}

body.dark .account-page input[type="text"] {
    background: #ccc;
    color: #181818;
}

body.dark .account-page input[type="text"]::placeholder {
    color: #4d4d4d;
}

.profile-rides {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
}

.profile-rides label {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.profile-rides input[type="checkbox"] {
    accent-color: #1e88e5;
}

body.dark .profile-rides {
    color: #f0f0f0;
}

