.account-page {
    background: #050506;
}

.account-main {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 150px);
    padding: 34px 24px 76px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-panel {
    width: min(760px, 100%);
    padding: 52px 58px;
    border: 2px solid #60646a;
    background: linear-gradient(145deg, rgba(30, 32, 36, 0.97), rgba(8, 9, 11, 0.98));
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.58), 0 0 38px rgba(213, 182, 95, 0.08);
}

.account-kicker {
    margin: 0 0 12px;
    color: #d5b65f;
    font-family: "OpenSans SemiBold", "Open Sans", sans-serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.account-panel h1 {
    margin: 0;
    color: #d8ba66;
    text-shadow: 0 1px 0 #5c451c;
    font-family: "TrajanPro3-Bold", Georgia, serif;
    font-size: clamp(36px, 6vw, 58px);
    line-height: 1.08;
    text-transform: uppercase;
}

.account-tabs {
    margin-top: 30px;
    border-bottom: 1px solid rgba(126, 130, 136, 0.50);
    display: flex;
    gap: 8px;
}

.account-tab {
    min-width: 150px;
    border: 1px solid #484c52;
    border-bottom: 3px solid #484c52;
    padding: 13px 16px;
    color: #c7aa5d;
    background: linear-gradient(180deg, #292c30, #1b1d20);
    cursor: pointer;
    font-family: "OpenSans SemiBold", "Open Sans", sans-serif;
    font-size: 16px;
}

.account-tab:hover,
.account-tab.active {
    border-color: #62676e;
    border-bottom-color: #d5b65f;
    color: #f0d889;
    background: linear-gradient(180deg, #35393e, #24272b);
}

.account-form-panel {
    padding-top: 28px;
}

.account-form-panel:not(.active) {
    display: none;
}

.account-form {
    display: grid;
    gap: 22px;
}

.account-form label {
    color: #9fb2c6;
    display: grid;
    gap: 9px;
    font-family: "OpenSans SemiBold", "Open Sans", sans-serif;
    font-size: 13px;
}

.account-form input {
    width: 100%;
    height: 48px;
    border: 1px solid #62676e;
    border-radius: 5px;
    outline: none;
    padding: 0 14px;
    color: #f4f9ff;
    background: rgba(40, 43, 47, 0.92);
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.account-form input::placeholder {
    color: #7f9aae;
}

.account-form input:focus {
    border-color: #d5b65f;
    box-shadow: 0 0 0 3px rgba(213, 182, 95, 0.14);
}

.password-field {
    position: relative;
    display: block;
}

.password-field input {
    padding-right: 72px;
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 12px;
    border: 0;
    padding: 6px;
    color: #d5b65f;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    transform: translateY(-50%);
}

.recaptcha-shell {
    min-height: 82px;
    padding: 7px;
    border: 1px solid #55595f;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 22, 25, 0.90);
}

.recaptcha-widget {
    min-height: 78px;
    filter: none;
}

.verification-noscript {
    margin: 0;
    padding: 12px 14px;
    border-left: 3px solid #d5b65f;
    color: #eadcae;
    background: rgba(42, 39, 29, 0.88);
    font: 13px/1.5 "Open Sans", sans-serif;
}

button.account-submit {
    min-height: 58px;
    border: 1px solid #777c83 !important;
    border-radius: 4px;
    color: #f0d889 !important;
    background: linear-gradient(180deg, #44484e, #292c30 58%, #191b1e) !important;
    box-shadow: 0 0 24px rgba(213, 182, 95, 0.13) !important;
    cursor: pointer;
    font-family: "TrajanPro3-Bold", Georgia, serif;
    font-size: 21px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
}

button.account-submit:hover {
    filter: brightness(1.15);
    border-color: #d5b65f !important;
    box-shadow: 0 0 30px rgba(213, 182, 95, 0.24) !important;
}

button.account-submit:disabled {
    cursor: wait;
    filter: grayscale(0.25);
    opacity: 0.72;
}

.account-link-button {
    justify-self: center;
    border: 0;
    padding: 4px 10px;
    color: #d5b65f;
    background: transparent;
    cursor: pointer;
    font: 600 13px "Open Sans", sans-serif;
}

.account-link-button:hover {
    color: #f0d889;
    text-decoration: underline;
}

.account-status a {
    color: #e2c778;
    font-weight: 700;
}

.activation-panel {
    max-width: 700px;
}

.activation-copy {
    margin: 24px 0 0;
    color: #a9bfd2;
    font: 15px/1.7 "Open Sans", sans-serif;
}

.activation-copy + .account-form {
    margin-top: 24px;
}

.activation-login {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.activation-login[hidden] {
    display: none;
}

.account-check {
    grid-template-columns: auto 1fr;
    align-items: center;
}

.account-check input {
    width: 20px;
    height: 20px;
}

.account-status {
    margin: 22px 0 0;
    padding: 12px 14px;
    border-left: 3px solid #d5b65f;
    color: #9fb2c6;
    background: rgba(213, 182, 95, 0.08);
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

.account-status.notice {
    color: #eadcae;
    background: rgba(213, 182, 95, 0.14);
}

.account-security-step {
    padding: 16px;
    border: 1px solid rgba(213, 182, 95, 0.45);
    background: rgba(213, 182, 95, 0.07);
    color: #eadcae;
}

.account-security-step strong {
    display: block;
    margin-bottom: 6px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.account-security-step p {
    margin: 0;
    color: #a9b5c2;
    font: 13px/1.55 "Open Sans", sans-serif;
}

.social-divider {
    margin: 30px 0 24px;
    color: #a9bfd2;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
}

.social-divider::before,
.social-divider::after {
    height: 1px;
    background: rgba(126, 130, 136, 0.50);
    content: "";
    flex: 1;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-login-button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #55595f;
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    opacity: 0.72;
}

.social-login-button img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: contain;
}

.social-login-button:nth-child(2) img {
    width: 72px;
    height: 72px;
    max-width: none;
}

.social-google {
    color: #4285f4;
    background: #fff;
}

.social-facebook {
    background: #1877f2;
}

@media (max-width: 760px) {
    .account-main {
        padding: 24px 16px 58px;
    }

    .account-panel {
        padding: 38px 24px;
    }
}

@media (max-width: 480px) {
    .account-tabs {
        gap: 0;
    }

    .account-tab {
        min-width: 0;
        flex: 1;
        font-size: 14px;
    }
}
