/* =========================================================
   WEBPANDA AUTH
   Login, password reset and registration flows.
   ========================================================= */

/* =========================================================
   WEBPANDA LOGIN PAGE
   ========================================================= */

.webpanda-login-section {
    padding: 72px 0 82px;
}

/* =========================================================
   Login Shell
   ========================================================= */

.webpanda-login-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    max-width: 1000px;
    min-height: 590px;
    margin: 0 auto;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--wp-border);
    border-radius: 22px;
    box-shadow:
        0 24px 60px rgba(17, 20, 24, 0.12);
}

/* =========================================================
   Brand Panel
   ========================================================= */

.webpanda-login-brand {
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(0, 0, 0, 0.18),
            rgba(6, 12, 7, 0.28)
        ),
        url("../images/domain-hero-bg.png");
    background-size: cover;
    /* Pull the interesting bamboo/neon area into view */
    background-position: 15% center;
    background-repeat: no-repeat;
    color: #FFFFFF;
}

.webpanda-login-brand::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 25% 25%,
            rgba(141, 210, 0, 0.10),
            transparent 36%
        ),
        linear-gradient(
            to top,
            rgba(0, 0, 0, 0.46),
            rgba(0, 0, 0, 0.04)
        );
    pointer-events: none;
}

.webpanda-login-brand-content {
    position: relative;
    z-index: 2;
}

.webpanda-login-watermark {
    display: block;
    width: 110px;
    max-width: 100%;
    height: auto;
    margin: 0 0 20px;
    opacity: 0.95;
}

.webpanda-login-brand h1 {
    margin: 0 0 16px;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.12;
}

.webpanda-login-brand > .webpanda-login-brand-content > p {
    max-width: 390px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.70);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.75;
}

/* Benefits */

.webpanda-login-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.webpanda-login-benefits > div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
}

.webpanda-login-benefits i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    background: var(--wp-green);
    color: #000000;
    border-radius: 50%;
    font-size: 9px;
}

/* =========================================================
   Form Panel
   ========================================================= */

.webpanda-login-form-panel {
    display: flex;
    align-items: center;
    padding: 58px;
}

.webpanda-login-form {
    width: 100%;
}

/* Heading */

.webpanda-login-heading {
    margin-bottom: 34px;
}

.webpanda-login-heading .webpanda-eyebrow {
    margin-bottom: 10px;
}

.webpanda-login-heading h2 {
    margin: 0 0 10px;
    color: #1E2228;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.webpanda-login-heading p {
    margin: 0;
    color: #7A828B;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

/* =========================================================
   Form Fields
   ========================================================= */

.webpanda-form-group {
    margin-bottom: 22px;
}

.webpanda-form-group label {
    margin: 0 0 8px;
    color: #30353A;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

/* Label / Forgot row */

.webpanda-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.webpanda-forgot-link {
    margin-bottom: 8px;
    color: #6F7780 !important;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none !important;
}

.webpanda-forgot-link:hover,
.webpanda-forgot-link:focus {
    color: var(--wp-green) !important;
}

/* Input wrapper */

.webpanda-input-group {
    display: flex;
    align-items: stretch;
    height: 52px;
    overflow: hidden;
    background: #F7F8F9;
    border: 1px solid #DFE3E7;
    border-radius: 11px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.webpanda-input-group:focus-within {
    background: #FFFFFF;
    border-color: var(--wp-green);
    box-shadow: 0 0 0 3px rgba(141, 210, 0, 0.16);
}

/* Input icon */

.webpanda-input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex: 0 0 50px;
    color: #8A929A;
    font-size: 14px;
}

/* Input */

.webpanda-input-group .form-control {
    height: 100%;
    padding: 0 12px 0 0;
    background: transparent;
    color: #30353A;
    border: 0 !important;
    border-radius: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    box-shadow: none !important;
}

.webpanda-input-group .form-control:focus {
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
}

.webpanda-input-group .form-control::placeholder {
    color: #A1A7AD;
}

/* Password reveal */

.webpanda-password-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    flex: 0 0 48px;
    padding: 0;
    background: transparent;
    color: #8A929A;
    border: 0;
    cursor: pointer;
}

.webpanda-password-toggle:hover,
.webpanda-password-toggle:focus {
    color: var(--wp-green);
    outline: 0;
}

/* =========================================================
   Remember Me
   ========================================================= */

.webpanda-login-options {
    display: flex;
    justify-content: flex-end;
    margin: 2px 0 20px;
}

.webpanda-remember {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #737B84;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    cursor: pointer;
}

/* =========================================================
   Login Button
   ========================================================= */

.webpanda-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 52px;
    padding: 0 20px;
    background: var(--wp-green);
    color: #000000;
    border: 0;
    border-radius: 11px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.webpanda-login-button:hover,
.webpanda-login-button:focus {
    background: var(--wp-green-hover);
    color: #000000;
    transform: translateY(-1px);
    outline: none;
}

.webpanda-login-button i {
    font-size: 10px;
}

/* =========================================================
   Registration
   ========================================================= */

.webpanda-login-register {
    margin-top: 24px;
    text-align: center;
    color: #858C94;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
}

.webpanda-login-register a {
    margin-left: 4px;
    color: var(--wp-green) !important;
    font-weight: 700;
    text-decoration: none !important;
}

.webpanda-login-register a:hover {
    color: #6EA700 !important;
}

/* =========================================================
   Captcha
   ========================================================= */

.webpanda-login-captcha {
    margin-bottom: 20px;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {
    .webpanda-login-section {
        padding: 58px 0 68px;
    }
    .webpanda-login-shell {
        grid-template-columns: 1fr;
        max-width: 650px;
    }
    .webpanda-login-brand {
        min-height: 310px;
        padding: 38px;
    }
    .webpanda-login-form-panel {
        padding: 48px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .webpanda-login-section {
        padding: 36px 0 48px;
    }
    .webpanda-login-shell {
        border-radius: 16px;
    }
    .webpanda-login-brand {
        min-height: 260px;
        padding: 28px;
    }
    .webpanda-login-brand h1 {
        font-size: 34px;
    }
    .webpanda-login-form-panel {
        padding: 32px 26px;
    }
    .webpanda-login-heading h2 {
        font-size: 26px;
    }
}

/* =========================================================
   Remember Me Checkbox
   ========================================================= */

/* Hide browser-default checkbox */
.webpanda-remember input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Custom checkbox */
.webpanda-remember span::before {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    margin-right: 8px;
    vertical-align: middle;
    background: #FFFFFF;
    border: 1px solid #CBD1D6;
    border-radius: 5px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

/* Checked state */
.webpanda-remember input[type="checkbox"]:checked + span::before {
    content: "\f00c";
    background: var(--wp-green);
    color: #000000;
    border-color: var(--wp-green);
    font-family: "Font Awesome 5 Pro";
    font-size: 9px;
    font-weight: 900;
}

/* Keyboard focus */
.webpanda-remember input[type="checkbox"]:focus + span::before {
    border-color: var(--wp-green);
    box-shadow:
        0 0 0 3px rgba(141, 210, 0, 0.14);
}

/* Hover */
.webpanda-remember:hover span::before {
    border-color: var(--wp-green);
}

/* =========================================================
   WEBPANDA PASSWORD RESET
   ========================================================= */

.webpanda-reset-section {
    padding: 72px 0 82px;
}

/* Main shell */

.webpanda-reset-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    max-width: 1000px;
    min-height: 560px;
    margin: 0 auto;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--wp-border);
    border-radius: 22px;
    box-shadow:
        0 24px 60px rgba(17, 20, 24, 0.12);
}

/* Right panel */

.webpanda-reset-panel {
    display: flex;
    align-items: center;
    padding: 58px;
}

.webpanda-reset-content {
    width: 100%;
}

/* Heading */

.webpanda-reset-heading {
    margin-bottom: 30px;
}

.webpanda-reset-heading .webpanda-eyebrow {
    margin-bottom: 10px;
}

.webpanda-reset-heading h2 {
    margin: 0 0 10px;
    color: #1E2228;
    font-family: "Montserrat", sans-serif;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.webpanda-reset-heading p,
.webpanda-reset-message {
    margin: 0;
    color: #7A828B;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

/* WHMCS alerts inside reset panel */

.webpanda-reset-content .alert {
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {
    .webpanda-reset-section {
        padding: 58px 0 68px;
    }
    .webpanda-reset-shell {
        grid-template-columns: 1fr;
        max-width: 650px;
    }
    .webpanda-reset-panel {
        padding: 48px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .webpanda-reset-section {
        padding: 36px 0 48px;
    }
    .webpanda-reset-shell {
        border-radius: 16px;
    }
    .webpanda-reset-panel {
        padding: 32px 26px;
    }
    .webpanda-reset-heading h2 {
        font-size: 26px;
    }
}

/* =========================================================
   PASSWORD RESET EMAIL PROMPT
   ========================================================= */

.webpanda-reset-form {
    width: 100%;
}

.webpanda-reset-back {
    margin-top: 22px;
    text-align: center;
}

.webpanda-reset-back a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #7A828B !important;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.webpanda-reset-back a:hover,
.webpanda-reset-back a:focus {
    color: var(--wp-green) !important;
    text-decoration: none !important;
}

.webpanda-reset-back i {
    font-size: 9px;
}

/* =========================================================
   PASSWORD RESET
   New Password Screen
   ========================================================= */

.webpanda-password-strength {
    margin: 4px 0 24px;
}

.webpanda-password-strength > label {
    display: block;
    margin: 0 0 8px;
    color: #30353A;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

/* WHMCS password strength meter */

.webpanda-password-strength .progress {
    height: 8px;
    overflow: hidden;
    background: #EEF0F2;
    border-radius: 999px;
    box-shadow: none;
}

/* Confirm-password feedback */

#inputNewPassword2Msg {
    margin-top: 7px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
}

/* =========================================================
   Reset Actions
   ========================================================= */

.webpanda-reset-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Cancel */

.webpanda-reset-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    padding: 0 18px;
    background: transparent;
    color: #7A828B;
    border: 1px solid #DFE3E7;
    border-radius: 11px;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background-color 0.2s ease;
}

.webpanda-reset-cancel:hover,
.webpanda-reset-cancel:focus {
    background: #F7F8F9;
    color: #30353A;
    border-color: #CBD1D6;
    outline: none;
}

/* =========================================================
   WEBPANDA PASSWORD STRENGTH
   ========================================================= */

/* Remove the old spacing <br> from WHMCS */
.webpanda-password-strength > br:first-child {
    display: none;
}

/* Strength meter track */
.webpanda-password-strength #passwordStrengthBar {
    height: 8px;
    margin: 10px 0 16px !important;
    overflow: hidden;
    background: #E9ECEF;
    border-radius: 999px;
    box-shadow: none;
}

/* Strength meter fill */
.webpanda-password-strength #passwordStrengthBar .progress-bar {
    border-radius: 999px;
    transition:
        width 0.25s ease,
        background-color 0.25s ease;
}

/* Weak */
.webpanda-password-strength #passwordStrengthBar .bg-danger {
    background-color: #DC4C4C !important;
}

/* Medium */
.webpanda-password-strength #passwordStrengthBar .bg-warning {
    background-color: #E7A928 !important;
}

/* Strong — WebPanda green */
.webpanda-password-strength #passwordStrengthBar .bg-success {
    background-color: var(--wp-green) !important;
}

/* =========================================================
   Password Tips Box
   ========================================================= */

.webpanda-password-strength .alert-info {
    margin: 0;
    padding: 15px 17px;
    background: rgba(141, 210, 0, 0.08);
    color: #526039;
    border: 1px solid rgba(141, 210, 0, 0.24);
    border-radius: 11px;
    font-family: "Montserrat", sans-serif;
    box-shadow: none;
}

.webpanda-password-strength .alert-info small {
    display: block;
    color: #626B59;
    font-size: 11px;
    line-height: 1.7;
}

/* Info icon */
.webpanda-password-strength .alert-info i {
    color: var(--wp-green);
}

/* First line / title */
.webpanda-password-strength .alert-info strong {
    color: #30353A;
    font-weight: 700;
}

/* Password reset success link */
.webpanda-reset-message a,
.webpanda-reset-heading a {
    color: var(--wp-green) !important;
    font-weight: 600;
    text-decoration: none !important;
}

.webpanda-reset-message a:hover,
.webpanda-reset-heading a:hover {
    color: var(--wp-green-hover) !important;
    text-decoration: none !important;
}

/* =========================================================
   WEBPANDA REGISTRATION PAGE
   ========================================================= */

.webpanda-register-section {
    padding: 72px 0 84px;
}

.webpanda-register-shell {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}

/* =========================================================
   Registration Hero
   ========================================================= */

.webpanda-register-hero {
    position: relative;
    overflow: hidden;
    padding: 46px;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.26),
            rgba(5, 10, 6, 0.34)
        ),
        url("../images/domain-hero-bg.png");
    background-size: cover;
    background-position: 15% center;
    border-radius: 22px;
    color: #FFFFFF;
}

.webpanda-register-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(141, 210, 0, 0.10),
            transparent 35%
        ),
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.18),
            rgba(0, 0, 0, 0.03)
        );
    pointer-events: none;
}

.webpanda-register-hero-content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.webpanda-register-watermark {
    display: block;
    width: 100px;
    height: auto;
    margin-bottom: 18px;
}

.webpanda-register-hero h1 {
    margin: 0 0 14px;
    color: #FFFFFF;
    font-family: "Montserrat", sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
}

.webpanda-register-hero p {
    max-width: 560px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.70);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    line-height: 1.75;
}

.webpanda-register-login {
    color: rgba(255, 255, 255, 0.60);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
}

.webpanda-register-login a {
    margin-left: 4px;
    color: var(--wp-green) !important;
    font-weight: 700;
    text-decoration: none !important;
}

/* =========================================================
   Form Cards
   ========================================================= */

.webpanda-register-card {
    margin-top: 22px;
    padding: 34px;
    background: #FFFFFF;
    border: 1px solid var(--wp-border);
    border-radius: 18px;
    box-shadow:
        0 12px 34px rgba(17, 20, 24, 0.06);
}

/* Card Heading */

.webpanda-register-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.webpanda-register-step {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    background: rgba(141, 210, 0, 0.11);
    color: var(--wp-green);
    border-radius: 11px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 700;
}

.webpanda-register-card-heading h2,
.webpanda-marketing-card h2 {
    margin: 0 0 5px;
    color: #1E2228;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.webpanda-register-card-heading p,
.webpanda-marketing-card p {
    margin: 0;
    color: #858C94;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    line-height: 1.6;
}

/* =========================================================
   Registration Inputs
   ========================================================= */

.webpanda-register-form .form-group {
    margin-bottom: 18px;
}

.webpanda-register-form .prepend-icon {
    position: relative;
}

.webpanda-register-form .field-icon {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 52px;
    margin: 0;
    color: #929AA2;
    font-size: 13px;
    pointer-events: none;
}

.webpanda-register-form input.field,
.webpanda-register-form input.form-control,
.webpanda-register-form select.field,
.webpanda-register-form select.form-control,
.webpanda-register-form textarea.form-control {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    background: #F7F8F9;
    color: #30353A;
    border: 1px solid #DFE3E7;
    border-radius: 11px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    box-shadow: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.webpanda-register-form .prepend-icon input,
.webpanda-register-form .prepend-icon select {
    padding-left: 48px;
}

.webpanda-register-form input:focus,
.webpanda-register-form select:focus,
.webpanda-register-form textarea:focus {
    background: #FFFFFF;
    border-color: var(--wp-green);
    outline: 0;
    box-shadow:
        0 0 0 3px rgba(141, 210, 0, 0.14);
}

/* Phone field */

.webpanda-register-form .iti {
    width: 100%;
}

.webpanda-register-form .iti input {
    width: 100%;
    height: 52px;
    background: #F7F8F9;
    border: 1px solid #DFE3E7;
    border-radius: 11px;
    font-family: "Montserrat", sans-serif;
}

/* =========================================================
   Custom Fields
   ========================================================= */

.webpanda-custom-field > label {
    display: block;
    margin-bottom: 7px;
    color: #30353A;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
}

.webpanda-custom-field .control input,
.webpanda-custom-field .control select,
.webpanda-custom-field .control textarea {
    width: 100%;
    min-height: 52px;
    background: #F7F8F9;
    border: 1px solid #DFE3E7;
    border-radius: 11px;
}

.webpanda-custom-field .field-help-text {
    display: block;
    margin-top: 6px;
    color: #8B9299;
    font-size: 11px;
}

/* =========================================================
   Password Generation
   ========================================================= */

.webpanda-generate-password {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 44px;
    background: transparent;
    color: #687078;
    border: 1px solid #DCE0E4;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
}

.webpanda-generate-password:hover {
    color: var(--wp-green);
    border-color: var(--wp-green);
}

/* Strength Meter */

.webpanda-register-strength {
    padding-top: 5px;
}

.webpanda-register-strength .progress {
    height: 8px;
    background: #E9ECEF;
    border-radius: 999px;
    overflow: hidden;
}

.webpanda-register-strength .progress-bar {
    border-radius: 999px;
}

.webpanda-register-strength #passwordStrengthTextLabel {
    margin: 8px 0 0;
    font-family: "Montserrat", sans-serif;
    font-size: 10px;
}

/* =========================================================
   Marketing
   ========================================================= */

.webpanda-marketing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* =========================================================
   Terms
   ========================================================= */

.webpanda-register-tos {
    margin: 26px 0 18px;
}

.webpanda-register-tos label {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin: 0;
    color: #717981;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
}

.webpanda-register-tos input {
    margin-top: 2px;
}

.webpanda-register-tos a {
    color: var(--wp-green) !important;
    font-weight: 600;
    text-decoration: none !important;
}

/* =========================================================
   CAPTCHA
   ========================================================= */

.webpanda-register-captcha {
    margin-top: 24px;
    text-align: center;
}

/* =========================================================
   Submit
   ========================================================= */

.webpanda-register-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 460px;
    height: 54px;
    margin: 0 auto;
    background: var(--wp-green);
    color: #000000;
    border: 0;
    border-radius: 11px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.webpanda-register-submit:hover,
.webpanda-register-submit:focus {
    background: var(--wp-green-hover);
    transform: translateY(-1px);
    outline: 0;
}

/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 991px) {
    .webpanda-register-section {
        padding: 58px 0 68px;
    }
    .webpanda-register-hero {
        padding: 38px;
    }
}

/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {
    .webpanda-register-section {
        padding: 36px 0 50px;
    }
    .webpanda-register-hero {
        padding: 28px;
        border-radius: 16px;
    }
    .webpanda-register-watermark {
        width: 86px;
    }
    .webpanda-register-hero h1 {
        font-size: 34px;
    }
    .webpanda-register-card {
        padding: 26px 22px;
        border-radius: 15px;
    }
    .webpanda-register-card-heading {
        gap: 12px;
    }
    .webpanda-marketing-card {
        align-items: flex-start;
        flex-direction: column;
    }
}
