.auth-body {
    min-height: 100vh;
    display: block;
    background:
        linear-gradient(135deg, rgba(236, 105, 40, 0.08) 0%, rgba(32, 189, 112, 0.06) 38%, rgba(246, 247, 249, 0) 72%),
        #f6f7f9;
    color: var(--ui-text, #111315);
}

.auth-shell {
    width: 100%;
    min-height: 100vh;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-shell-register {
    align-items: stretch;
}

.auth-shell-login {
    background: #ffffff;
    padding: 32px 18px;
}

.auth-panel {
    width: min(1180px, 100%);
    display: grid;
    grid-template-columns: 400px minmax(0, 1fr);
    background: #ffffff;
    border: 1px solid rgba(217, 222, 229, 0.9);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(17, 19, 21, 0.08);
}

.auth-shell-login .auth-panel {
    width: min(408px, 100%);
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.auth-aside {
    min-height: 690px;
    padding: 34px;
    background:
        linear-gradient(145deg, rgba(236, 105, 40, 0.14) 0%, rgba(236, 105, 40, 0) 42%),
        #111315;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    position: relative;
}

.auth-aside::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: #ec6928;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0;
}

.auth-brand::before {
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, #ec6928 0%, #fe9805 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.auth-brand:hover {
    color: #ffffff;
}

.auth-brand-icon,
.auth-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.auth-login-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    margin-bottom: 34px;
    color: var(--ui-black, #111315);
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0;
}

.auth-brand-icon {
    background: #ffffff;
    color: #111315;
}

.auth-copy {
    max-width: 430px;
    position: relative;
    z-index: 1;
}

.auth-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
    color: #9aa3af;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.auth-eyebrow [data-lucide] {
    width: 14px;
    height: 14px;
    color: #20bd70;
}

.auth-copy h1 {
    color: #ffffff;
    font-size: clamp(31px, 3.2vw, 42px);
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 18px;
}

.auth-copy p {
    color: #c3c8cf;
    font-size: 14.5px;
    line-height: 1.6;
}

.auth-progress-card {
    min-height: 92px;
    padding: 17px;
    border: 1px solid #303741;
    border-radius: 8px;
    background: #171a1f;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.auth-progress-card span {
    display: block;
    margin-bottom: 7px;
    color: #9aa3af;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.auth-progress-card strong {
    color: #ffffff;
    font-size: 17px;
    line-height: 1.25;
}

.auth-progress-card [data-lucide] {
    width: 34px;
    height: 34px;
    color: #20bd70;
    flex: 0 0 auto;
}

.auth-feature-list {
    display: grid;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.auth-feature-list div,
.auth-metrics div {
    border: 1px solid #2f353d;
    background: #171a1f;
    border-radius: 8px;
}

.auth-feature-list div {
    min-height: 50px;
    padding: 12px 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e6e8eb;
    font-size: 13px;
}

.auth-feature-list [data-lucide] {
    width: 17px;
    height: 17px;
    color: #ec6928;
    stroke-width: 1.8;
}

.auth-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.auth-metrics div {
    min-height: 112px;
    padding: 16px;
    display: grid;
    align-content: end;
    position: relative;
    overflow: hidden;
}

.auth-metrics div::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 12px;
    width: 42px;
    height: 42px;
    border: 1px solid #2f353d;
    border-radius: 50%;
}

.auth-metrics [data-lucide] {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 22px;
    height: 22px;
    color: #20bd70;
}

.auth-metrics strong {
    display: block;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 6px;
}

.auth-metrics span {
    color: #aeb5bd;
    font-size: 12px;
}

.auth-card {
    padding: 38px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
}

.auth-card-simple {
    padding: 0;
    min-height: auto;
}

.auth-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.auth-section-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #9a3412;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.auth-card-simple .auth-card-header {
    display: block;
    text-align: left;
    margin-bottom: 24px;
}

.auth-card-icon {
    background: #fff7ed;
    color: var(--ui-green-dark, #c2410c);
}

.auth-card-header h2 {
    color: var(--ui-black, #111315);
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: 0;
}

.auth-card-simple .auth-card-header h2 {
    font-size: 25px;
    font-weight: 650;
}

.auth-card-header p {
    margin-top: 7px;
    color: #667085;
    font-size: 13px;
    line-height: 1.45;
}

.auth-alert {
    width: 100%;
    padding: 11px 12px;
    border-radius: 8px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.45;
}

.auth-alert-error {
    background: #fff7f7;
    color: #b42318;
    border: 1px solid #f5c2c0;
}

.auth-alert-success {
    background: #f3fbf6;
    color: #067647;
    border: 1px solid #a9ddbd;
}

.auth-alert-info {
    background: #f7fbff;
    color: #175cd3;
    border: 1px solid #b9d6ff;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.auth-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.auth-field {
    display: grid;
    gap: 8px;
}

.auth-field label {
    color: #252a31;
    font-size: 12px;
    font-weight: 650;
}

.auth-input {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 9px;
    border: 1px solid #d9dee5;
    border-radius: 8px;
    background: #ffffff;
    padding: 0 10px 0 12px;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.auth-input:focus-within {
    border-color: #ec6928;
    box-shadow: 0 0 0 3px rgba(236, 105, 40, 0.12);
}

.auth-input [data-lucide] {
    width: 16px;
    height: 16px;
    color: #667085;
    stroke-width: 1.8;
}

.auth-input input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ui-black, #111315);
    font: inherit;
    font-size: 14px;
}

.auth-input input::placeholder {
    color: #8a93a1;
}

.auth-input-action {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #667085;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
}

.auth-input-action:hover,
.auth-input-action:focus-visible {
    background: #f4f6f8;
    color: var(--ui-black, #111315);
    outline: none;
}

.auth-input .auth-input-action [data-lucide] {
    width: 16px;
    height: 16px;
}

.auth-options,
.auth-actions,
.auth-actions-split {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-options {
    justify-content: space-between;
    margin-top: 1px;
}

.auth-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667085;
    font-size: 12px;
}

.auth-check input {
    width: 16px;
    height: 16px;
    accent-color: var(--ui-green, #ec6928);
}

.auth-link,
.auth-switch a {
    color: #111315;
    text-decoration: none;
    font-size: 12px;
    font-weight: 650;
}

.auth-link:hover,
.auth-switch a:hover {
    text-decoration: underline;
}

.auth-submit,
.auth-secondary {
    min-height: 44px;
    border-radius: 8px;
    border: 1px solid transparent;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.auth-submit {
    width: 100%;
    background: #ec6928;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(236, 105, 40, 0.16);
}

.auth-submit:hover {
    background: #ed5300;
    box-shadow: 0 12px 24px rgba(237, 83, 0, 0.2);
}

.auth-secondary {
    background: #ffffff;
    color: var(--ui-black, #111315);
    border-color: #d9dee5;
}

.auth-secondary:hover {
    background: #f6f7f9;
    border-color: #cfd5dd;
}

.auth-actions {
    margin-top: 4px;
}

.auth-actions .auth-submit,
.auth-actions .auth-secondary {
    width: auto;
    flex: 1;
}

.auth-actions-split .auth-secondary {
    flex: 0.8;
}

.auth-switch {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #edf0f2;
    display: flex;
    justify-content: center;
    gap: 7px;
    color: #667085;
    font-size: 12px;
}

.auth-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
    padding: 5px;
    border: 1px solid #edf0f2;
    border-radius: 10px;
    background: #f7f9fb;
}

.auth-step {
    min-height: 42px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: #667085;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 650;
    cursor: default;
}

.auth-step span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #f4f6f8;
    color: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.auth-step span [data-lucide] {
    width: 13px;
    height: 13px;
    stroke-width: 1.8;
}

.auth-step.active {
    background: #ffffff;
    color: #9a3412;
    border-color: #f6c5aa;
    box-shadow: 0 8px 18px rgba(17, 19, 21, 0.07);
}

.auth-step.active span {
    background: #ec6928;
    color: #ffffff;
}

.step-content {
    display: none;
}

.step-content.active {
    display: grid;
    gap: 17px;
}

.password-strength {
    height: 3px;
    background: #eef1f4;
    border-radius: 999px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    border-radius: 999px;
    transition: width 0.2s ease, background 0.2s ease;
}

.strength-weak {
    width: 33%;
    background: #d92d20;
}

.strength-medium {
    width: 66%;
    background: #dc6803;
}

.strength-strong {
    width: 100%;
    background: #ec6928;
}

.register-wrapper,
.login-wrapper {
    width: 100%;
}

.auth-plan-grid,
.auth-payment-methods {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.auth-payment-methods {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-plan-card {
    position: relative;
    display: grid;
    gap: 7px;
    min-height: 116px;
    padding: 15px 15px 14px;
    border: 1px solid #d9dee5;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.auth-plan-card:hover {
    border-color: #c8d0d9;
    box-shadow: 0 10px 22px rgba(17, 19, 21, 0.06);
}

.auth-plan-card:has(input:checked) {
    border-color: #ec6928;
    background: #fff7ed;
    box-shadow: 0 10px 22px rgba(236, 105, 40, 0.12);
}

.auth-plan-card input {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 16px;
    height: 16px;
    accent-color: #ec6928;
}

.auth-plan-card span,
.auth-plan-title {
    color: #101828;
    font-size: 13px;
    font-weight: 800;
    padding-right: 24px;
}

.auth-plan-card strong {
    color: #111315;
    font-size: 20px;
    line-height: 1.1;
}

.auth-plan-card small {
    color: #667085;
    font-size: 12px;
    line-height: 1.45;
}

.auth-payment-methods .auth-plan-card {
    min-height: 94px;
}

.license-payment-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.license-payment-card {
    width: min(760px, 100%);
    padding: 26px;
    border: 1px solid #d9e3df;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(16, 24, 40, 0.16);
}

.license-payment-header {
    margin-bottom: 18px;
}

.license-payment-header span {
    color: #067647;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.license-payment-header h1 {
    margin: 8px 0 5px;
    color: #101828;
    font-size: 28px;
}

.license-payment-header p,
.license-reference-box p {
    color: #667085;
    font-size: 13px;
}

.license-payment-summary,
.license-reference-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.license-payment-summary div,
.license-reference-grid div {
    padding: 14px;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    background: #f9fafb;
}

.license-payment-summary span,
.license-reference-grid span {
    display: block;
    color: #667085;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.license-payment-summary strong,
.license-reference-grid strong {
    display: block;
    margin-top: 6px;
    color: #101828;
    font-size: 18px;
}

.license-reference-box {
    margin-bottom: 16px;
    padding: 18px;
    border-radius: 12px;
    background: #ecfdf3;
    border: 1px solid #abefc6;
}

.license-reference-box h2 {
    margin-bottom: 10px;
    color: #067647;
    font-size: 16px;
}

.license-technical-ref {
    display: block;
    margin-top: 10px;
    color: #667085;
    font-size: 11px;
}

.license-payment-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.renew-license-body {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    display: block;
    background:
        radial-gradient(circle at 12% 8%, rgba(236, 105, 40, 0.08), transparent 26%),
        linear-gradient(180deg, #f7f9f8 0%, #eef2f0 100%);
    color: var(--ui-black, #111315);
    font-family: Roboto, "Segoe UI", Helvetica, Arial, sans-serif;
}

.renew-license-page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 20px;
}

.renew-license-card {
    width: min(760px, 100%);
    padding: 18px;
    border: 1px solid var(--ui-border, #d9dee3);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(17, 19, 21, 0.08);
}

.renew-license-header {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.renew-license-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-self: center;
    width: fit-content;
    color: var(--ui-black, #111315);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.renew-license-status-card {
    display: block;
    padding: 18px;
    border: 1px solid var(--ui-border, #d9dee3);
    border-radius: 10px;
    background:
        radial-gradient(circle at 96% 18%, rgba(236, 105, 40, 0.08), transparent 28%),
        #ffffff;
    text-align: center;
}

.renew-license-status-card span {
    display: block;
    color: var(--ui-green-dark, #c2410c);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.renew-license-status-card strong {
    display: block;
    margin-top: 4px;
    color: var(--ui-black, #111315);
    font-size: 20px;
    font-weight: 500;
}

.renew-license-status-card p {
    margin-top: 4px;
    color: var(--ui-muted, #69707a);
    font-size: 13px;
    line-height: 1.5;
}

.renew-section-heading {
    margin: 18px 0 10px;
}

.renew-section-heading h2 {
    margin: 0;
    color: var(--ui-black, #111315);
    font-size: 14px;
    font-weight: 600;
}

.renew-section-heading p {
    margin-top: 4px;
    color: var(--ui-muted, #69707a);
    font-size: 12px;
}

.renew-license-card .auth-plan-grid,
.renew-license-card .auth-payment-methods {
    gap: 12px;
}

.renew-license-card .auth-plan-card {
    position: relative;
    min-height: 112px;
    padding: 16px;
    border: 1px solid var(--ui-border, #d9dee3);
    border-radius: 10px;
    background: #fff;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.renew-license-card .auth-plan-card:hover {
    border-color: rgba(236, 105, 40, 0.38);
    box-shadow: 0 8px 18px rgba(17, 19, 21, 0.06);
}

.renew-license-card .auth-plan-card:has(input:checked) {
    border-color: var(--ui-green, #ec6928);
    background: #fff7ed;
    box-shadow: inset 0 0 0 1px var(--ui-green, #ec6928);
}

.renew-license-card .auth-plan-card input {
    accent-color: var(--ui-green, #ec6928);
}

.renew-license-card .auth-plan-card span {
    color: var(--ui-black, #111315);
    font-size: 13px;
    font-weight: 600;
}

.renew-license-card .auth-plan-card strong {
    color: var(--ui-black, #111315);
    font-size: 22px;
    font-weight: 600;
}

.renew-license-card .auth-plan-card small {
    color: var(--ui-muted, #69707a);
    font-size: 12px;
    line-height: 1.45;
}

.renew-license-actions {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--ui-border, #d9dee3);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.renew-license-actions .auth-submit {
    width: auto;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 7px;
    background: var(--ui-green, #ec6928);
    box-shadow: none;
}

.renew-license-actions .auth-submit:hover {
    background: #ed5300;
    transform: none;
    box-shadow: none;
}

.renew-license-actions .auth-secondary {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 7px;
    border-color: var(--ui-border, #d9dee3);
    color: var(--ui-black, #111315);
    background: #fff;
}

.renew-license-actions .auth-secondary:hover {
    background: #f7f9f8;
}

.express-phone-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: rgba(17, 19, 21, 0.42);
}

.express-phone-modal.open {
    display: flex;
}

.express-phone-dialog {
    position: relative;
    width: min(420px, 100%);
    padding: 22px;
    border: 1px solid var(--ui-border, #d9dee3);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(17, 19, 21, 0.22);
}

.express-phone-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--ui-border, #d9dee3);
    border-radius: 8px;
    background: #fff;
    color: var(--ui-muted, #69707a);
    cursor: pointer;
}

.express-phone-dialog h2 {
    margin: 0;
    color: var(--ui-black, #111315);
    font-size: 18px;
    font-weight: 600;
}

.express-phone-dialog p {
    margin-top: 6px;
    color: var(--ui-muted, #69707a);
    font-size: 13px;
}

.express-phone-dialog label {
    display: grid;
    gap: 7px;
    margin-top: 18px;
    color: #303844;
    font-size: 12px;
    font-weight: 600;
}

.express-phone-dialog input {
    min-height: 40px;
    border: 1px solid var(--ui-border, #d9dee3);
    border-radius: 8px;
    padding: 9px 11px;
    font-size: 14px;
}

.express-phone-dialog input:focus {
    outline: none;
    border-color: var(--ui-green, #ec6928);
    box-shadow: 0 0 0 3px rgba(236, 105, 40, 0.12);
}

.express-phone-error {
    margin-top: 8px;
    color: #b42318;
    font-size: 12px;
}

.express-phone-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.express-phone-actions .auth-submit,
.express-phone-actions .auth-secondary {
    width: auto;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 7px;
}

@media (max-width: 900px) {
    .auth-shell {
        padding: 18px;
        align-items: flex-start;
    }

    .auth-panel {
        grid-template-columns: 1fr;
    }

    .auth-aside {
        min-height: auto;
        padding: 24px;
    }

    .auth-progress-card {
        min-height: auto;
    }

    .auth-copy h1 {
        font-size: 30px;
    }

    .auth-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .auth-shell {
        padding: 0;
    }

    .auth-panel {
        min-height: 100vh;
        border-radius: 0;
        border-left: 0;
        border-right: 0;
    }

    .auth-aside {
        gap: 24px;
    }

    .auth-copy h1 {
        font-size: 27px;
    }

    .auth-grid,
    .auth-metrics,
    .auth-plan-grid,
    .auth-payment-methods,
    .license-payment-summary,
    .license-reference-grid {
        grid-template-columns: 1fr;
    }

    .auth-steps {
        gap: 4px;
        padding: 4px;
    }

    .auth-step {
        min-height: 48px;
        flex-direction: column;
        gap: 4px;
        font-size: 11px;
    }

    .auth-options,
    .auth-actions-split,
    .auth-switch,
    .license-payment-actions,
    .renew-license-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .renew-license-card {
        padding: 14px;
        border-radius: 12px;
    }

    .renew-license-actions .auth-submit,
    .renew-license-actions .auth-secondary {
        width: 100%;
    }

    .auth-actions .auth-submit,
    .auth-actions .auth-secondary {
        width: 100%;
    }
}
