/* =========================================================
    REGULUS LOGIN - Page Shell
========================================================= */

.regulus-login {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #07152d;
    color: #ffffff;
}


/* ---------------------------------------------------------
    Background
--------------------------------------------------------- */

.regulus-login__background {
    position: absolute;
    inset: 0;

    background-image:
        url("../images/login_slide.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1.02);
}


/* ---------------------------------------------------------
    Dark overlay
--------------------------------------------------------- */

.regulus-login__overlay {
    position: absolute;
    inset: 0;

    /* background:
        linear-gradient(
            90deg,
            rgba(3, 17, 38, 0.88) 0%,
            rgba(5, 24, 50, 0.72) 45%,
            rgba(4, 15, 35, 0.82) 100%
        ); */
    
    /* Purple/Navy */
    background:
        linear-gradient(
            90deg,
            rgba(5, 12, 35, 0.92) 0%,
            rgba(22, 18, 68, 0.82) 45%,
            rgba(12, 10, 38, 0.90) 100%
        );
    

    z-index: 1;
}


/* ---------------------------------------------------------
    Main content
--------------------------------------------------------- */

.regulus-login__content {
    position: relative;
    z-index: 2;

    min-height: 100vh;

    display: grid;
    grid-template-columns: 1fr 1.2fr;

    align-items: center;
    gap: 60px;
    padding: 60px 7%;
}




/* ---------------------------------------------------------
    Left side
--------------------------------------------------------- */

.regulus-login__left {
    min-width: 0;

    display: flex;
    flex-direction: column;

    height: 100%;

    padding-top: 10px;
}


/* ---------------------------------------------------------
Logo
--------------------------------------------------------- */

.regulus-login__branding {
    margin-bottom: 48px;
    background: #fff;
    max-width: 220px;
    border-radius: 20px;
    padding: 1% 1% 0.7% 1%;
}

.regulus-login__logo {
    display: block;

    width: 95%;
    max-width: 200px;
    height: auto;

    /* filter:
        drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25)); */
}


/* ---------------------------------------------------------
Hero
--------------------------------------------------------- */

.regulus-login__hero {
    max-width:760px;
}


.regulus-login__eyebrow {
    display: inline-block;

    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2.4px;

    color: #58aaff;
}


.regulus-login__hero h1 {
    font-family: "DM Sans", sans-serif;
    font-size: clamp(42px, 4vw, 60px);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}


.regulus-login__hero h1 span {
    display: inline-block;

    /* color: #4d82ff; */
    /* color: #5138EE; */

    background: linear-gradient(
                315deg,
                #4f78ff 0%,
                #5967ff 50%,
                #5138EE 100%
            );
        
    background-size: 300% 300%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;

    /* Tune this independently */
    letter-spacing: -1px;

    animation: regulusGradientMove 5s ease-in-out infinite;
}

@keyframes regulusGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.regulus-login__description {
    max-width: 560px;

    margin: 26px 0 0;

    color: rgba(255, 255, 255, 0.78);

    font-size: 16px;

    line-height: 1.65;
}


/* =========================================================
FEATURES
========================================================= */

.regulus-login__features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 55px;
    row-gap: 16px;

    max-width: 570px;

    margin-top: 38px;
}


.regulus-login__feature {
    display: flex;

    align-items: center;

    gap: 14px;

    min-height: 42px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 14px;

    font-weight: 500;
}


/* ---------------------------------------------------------
Feature icon
--------------------------------------------------------- */

.regulus-login__feature-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 38px;
    height: 38px;

    border-radius: 9px;

    background: rgba(67, 139, 255, 0.15);

    border: 1px solid rgba(100, 170, 255, 0.25);

    color: #72b9ff;

    font-size: 16px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.12);
}


/* Different icon accents */

.regulus-login__feature:nth-child(1) .regulus-login__feature-icon {
    color: #5ba9ff;
    background: rgba(61, 144, 255, 0.18);
}

.regulus-login__feature:nth-child(2) .regulus-login__feature-icon {
    color: #43e6a3;
    background: rgba(39, 205, 136, 0.16);
}

.regulus-login__feature:nth-child(3) .regulus-login__feature-icon {
    color: #ffb03a;
    background: rgba(255, 168, 43, 0.16);
}

.regulus-login__feature:nth-child(4) .regulus-login__feature-icon {
    color: #9c68ff;
    background: rgba(133, 76, 255, 0.17);
}

.regulus-login__feature:nth-child(5) .regulus-login__feature-icon {
    color: #b4ff5e;
    background: rgba(148, 255, 61, 0.17);
}


/* =========================================================
SECURITY
========================================================= */

.regulus-login__security {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: auto;
    padding-top: 35px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
}


.regulus-login__security-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    color: #ffffff;

    font-size: 20px;
}


/* ---------------------------------------------------------
    Right side
--------------------------------------------------------- */

.regulus-login__right {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* ---------------------------------------------------------
Glassmorphism Login Card
--------------------------------------------------------- */

.regulus-login__card {
    position: relative;

    width: 100%;
    max-width: 480px;

    padding: 42px;

    border-radius: 28px;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.28);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);

    overflow: hidden;
}

/* ---------------------------------------------------------
Register Card
--------------------------------------------------------- */

.regulus-register-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    column-gap: 20px;
    row-gap: 0;

    width: 100%;
    max-width: 720px;
}

.regulus-register-card {
    max-width: 600px;
}



/* subtle light inside the glass */

.regulus-login__card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -80px;

    background: rgba(93, 168, 255, 0.04);

    border-radius: 50%;

    filter: blur(10px);

    pointer-events: none;
}


/* ---------------------------------------------------------
Card Header
--------------------------------------------------------- */

.regulus-login__card-header {
    position: relative;
    z-index: 1;

    margin-bottom: 35px;
}


.regulus-login__card-logo {
    display: flex;
    justify-content: center;

    margin-bottom: 24px;
}


.regulus-login__card-logo img {
    width: auto;
    max-width: 320px;
    height: auto;
    max-height: 140px;
    border-radius: 12px;

    filter:
        drop-shadow(0 4px 12px rgba(0, 0, 0, 0.18));
}


.regulus-login__card-header h2 {
    margin: 0;

    color: #ffffff;

    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
}

/* =========================================================
   Welcome Hand Animation
========================================================= */

.regulus-login__wave {
    display: inline-block;

    margin-left: 4px;

    font-size: 28px;

    transform-origin: 70% 70%;

    animation: regulus-login__wave 2.8s ease-in-out infinite;
}


@keyframes regulus-login__wave {

    0% {
        transform: rotate(-5deg);
    }

    25% {
        transform: rotate(8deg);
    }

    50% {
        transform: rotate(-5deg);
    }

    75% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(-5deg);
    }
}

.regulus-login__card-header p {
    margin: 10px 0 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 14px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
Card Body
--------------------------------------------------------- */

.regulus-login__card-body {
    position: relative;
    z-index: 1;
}


/* Temporary placeholder */

.regulus-login__placeholder {
    display: flex;
    align-items: center;
    gap: 12px;

    min-height: 90px;

    padding: 20px;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.14);

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;
}


.regulus-login__placeholder-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: rgba(82, 153, 255, 0.18);

    color: #80bdff;
}

/* =========================================================
Login Form
========================================================= */

.regulus-form-field {
    margin-bottom: 22px;

}


.regulus-form-field > label {
    display: block;

    margin-bottom: 8px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 13px;
    font-weight: 600;
}


.regulus-form-field > label > span {
    color: #72b8ff;
}


/* ---------------------------------------------------------
Input wrapper
--------------------------------------------------------- */

.regulus-input-wrap {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
}


.regulus-input-wrap > i:first-child {
    position: absolute;
    left: 16px;

    color: rgba(255, 255, 255, 0.50);

    font-size: 15px;

    pointer-events: none;

    z-index: 2;
}

.regulus-input-wrap > i,
.regulus-password-toggle i {
    color: #7b87a3 !important;
}


/* ---------------------------------------------------------
Inputs
--------------------------------------------------------- */

.regulus-input-wrap input,
.regulus-input-wrap select {
    width: 100%;
    height: 52px;

    min-width: 0;

    padding: 0 45px;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 13px;

    background: rgba(255, 255, 255, 0.08);

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.regulus-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}


.regulus-input-wrap input:focus,
.regulus-input-wrap select:focus {
    border-color: rgba(105, 180, 255, 0.75);

    background: rgba(255, 255, 255, 0.11);

    box-shadow:
        0 0 0 3px rgba(77, 157, 255, 0.10);
}


/* ---------------------------------------------------------
Select
--------------------------------------------------------- */

.regulus-input-wrap select {
    appearance: none;
    -webkit-appearance: none;

    padding-right: 45px;

    cursor: pointer;
}


.regulus-input-wrap select option {
    background: #102746;
    color: #ffffff;
}


.regulus-select-icon {
    position: absolute;

    right: 17px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 11px;

    pointer-events: none;
}


/* ---------------------------------------------------------
Password toggle
--------------------------------------------------------- */

.regulus-password-toggle {
    position: absolute;

    right: 16px;

    display: flex;
    align-items: center;

    color: rgba(255, 255, 255, 0.50);

    cursor: pointer;

    z-index: 3;
}


.regulus-password-toggle:hover {
    color: #ffffff;
}


/* ---------------------------------------------------------
Error
--------------------------------------------------------- */

.regulus-error {
    display: block;

    margin-top: 6px;

    color: #ff8e9e !important;

    font-size: 12px !important;
    font-weight: 400 !important;
}

.regulus-server-error {
    margin-bottom: 18px;

    color: #ff8e9e;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}


/* ---------------------------------------------------------
Remember / Forgot Password
--------------------------------------------------------- */

.regulus-form-options {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    margin-top: 4px;
    margin-bottom: 26px;
}


.regulus-form-options a {
    color: #7fc1ff;

    font-size: 13px;
    font-weight: 500;

    transition: color 0.2s ease;
}


.regulus-form-options a:hover {
    color: #fff;
}


.regulus-remember {
    display: flex;

    align-items: center;

    gap: 8px;

    margin: 0;

    color: rgba(255, 255, 255, 0.68);

    font-size: 13px;

    cursor: pointer;
}


.regulus-remember input {
    appearance: none;
    -webkit-appearance: none;

    width: 17px;
    height: 17px;

    margin: 0;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 5px;

    background: rgba(255, 255, 255, 0.08);

    cursor: pointer;

    position: relative;
}


.regulus-remember input:checked {
    background: #4f9cff;
    border-color: #4f9cff;
}


.regulus-remember input:checked::after {
    content: "\f00c";

    position: absolute;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: #ffffff;

    font-size: 10px;
}

/* =========================================================
   Resend Verification Code
========================================================= */

.regulus-resend {
    display: flex;

    justify-content: flex-end;
    align-items: center;

    margin-top: -4px;
    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
    line-height: 1.5;
}


.regulus-resend span {
    color: #7fc1ff;

    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.regulus-resend span:hover {
    color: #ffffff;
}

/* =========================================================
   Server Success Message
========================================================= */

.regulus-server-success {
    display: block;

    margin-bottom: 18px;
    padding: 10px 12px;

    border: 1px solid rgba(67, 230, 163, 0.22);
    border-radius: 10px;

    background: rgba(39, 205, 136, 0.10);

    color: #73e6b5;

    font-size: 12px;
    font-weight: 400;

    line-height: 1.5;
}

/* =========================================================
   Register Checkbox
========================================================= */

.regulus-checkbox {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 20px;

    position: relative;

    cursor: pointer;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    line-height: 1.4;

    user-select: none;
}


/* Hide native checkbox */

.regulus-checkbox input {
    position: absolute;

    opacity: 0;

    width: 0;
    height: 0;
}


/* Custom checkbox */

.regulus-checkbox__box {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 17px;
    height: 17px;

    border-radius: 5px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.30);

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}


/* Check mark */

.regulus-checkbox__box::after {
    content: "";

    width: 4px;
    height: 8px;

    border: solid #ffffff;

    border-width: 0 2px 2px 0;

    transform: rotate(45deg) scale(0);

    transition: transform 0.15s ease;
}


/* Checked */

.regulus-checkbox input:checked + .regulus-checkbox__box {
    background: rgba(93, 168, 255, 0.85);

    border-color: rgba(127, 193, 255, 0.95);

    box-shadow:
        0 0 12px rgba(93, 168, 255, 0.20);
}


.regulus-checkbox input:checked + .regulus-checkbox__box::after {
    transform: rotate(45deg) scale(1);
}


/* Hover */

.regulus-checkbox:hover .regulus-checkbox__box {
    border-color: rgba(127, 193, 255, 0.65);
}


/* Label */

.regulus-checkbox__label {
    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 400;
}

/* =========================================================
   Authorized + reCAPTCHA Row
========================================================= */

.regulus-register-security-row {
    display: flex;

    align-items: center;
    justify-content: space-between;

    width: 100%;

    gap: 20px;

    margin-top: 14px;
    margin-bottom: 12px;
}


/* ---------------------------------------------------------
   Authorized Checkbox
--------------------------------------------------------- */

.regulus-register-security-row .regulus-checkbox {
    display: flex;

    align-items: center;

    flex: 1;

    min-width: 0;

    margin: 0;
}


/* ---------------------------------------------------------
   CAPTCHA
--------------------------------------------------------- */

.regulus-register-captcha {
    flex-shrink: 0;

    display: flex;

    /* flex-direction: column; */

    align-items: center;
    justify-content: flex-end;

    width: 250px;

    min-height: 78px;

    margin: 0;
}


/* Google CAPTCHA */

.regulus-register-captcha .g-recaptcha {
    transform: scale(0.78);
    transform-origin: right center;

    margin-right: 0;
    margin-bottom: -16px;
}


/* CAPTCHA validation message */

.regulus-register-captcha .regulus-error {
    display: block;

    width: 100%;

    margin-top: 4px;

    text-align: right;
}

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

.regulus-register-terms {
    margin-top: 18px;
    margin-bottom: 5px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 11px;

    line-height: 1.6;

    text-align: center;
}


.regulus-register-terms a {
    color: rgba(127, 193, 255, 0.85);

    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.regulus-register-terms a:hover {
    color: #ffffff;
}

/* =========================================================
   Back / Secondary Link
========================================================= */

.regulus-login__back {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-top: 22px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
    line-height: 1.5;
}


.regulus-login__back a {
    color: #7fc1ff;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}


.regulus-login__back a:hover {
    color: #ffffff;
}


/* ---------------------------------------------------------
Login Button
--------------------------------------------------------- */

.regulus-login-submit {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}


/* .regulus-login-submit button {
    position: relative;

    width: 100%;
    height: 52px;

    border: none;
    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #4f78ff 0%,
            #5967ff 50%,
            #5138EE 100%
        );

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(64, 120, 255, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
} */

.regulus-login-submit button {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 52px;

    border: none;
    border-radius: 9999px;

    background: linear-gradient(
        45deg,
        #5967ff 0%,
        #6651ec 35%,
        #6f5cec 65%,
        #5138ee 100%
    );

    background-size: 300% 300%;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(64, 120, 255, 0.25);

    animation: regulusButtonGradient 5s ease-in-out infinite;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

@keyframes regulusButtonGradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}

.regulus-login-submit button::after {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 55%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 15%,
        rgba(255, 255, 255, 0.45) 50%,
        rgba(255, 255, 255, 0.08) 95%,
        transparent 100%
    );

    transform: skewX(0deg);

    pointer-events: none;
}

@keyframes regulusButtonShine {

    0% {
        left: -120%;
    }

    100% {
        left: 160%;
    }

}


.regulus-login-submit button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 14px 30px rgba(64, 120, 255, 0.35);
}

.regulus-login-submit button:hover::after {
    animation: regulusButtonShine 0.8s ease;
}


.regulus-login-submit button:active {
    transform: translateY(0);
}

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

@media (max-width: 769px) {

    .regulus-login {
        min-height: 100vh;
        height: auto;
        overflow-x: hidden;
    }


    /* =========================================================
       Main Mobile Layout
       ========================================================= */

    .regulus-login__content {
        position: relative;

        display: flex;
        flex-direction: column;

        gap: 10px;

        width: 100%;
        min-height: 100vh;

        padding: 30px 20px;
    }


    /* =========================================================
       Left Section
       ========================================================= */

    .regulus-login__left {
        position: relative;

        display: contents;

        width: 100%;
        height: auto;

        margin-top: 0;
        padding-bottom: 10px;
    }


    /* =========================================================
       Right Section
       ========================================================= */

    .regulus-login__right {
        position: relative;

        width: 100%;
        padding: 0;
        height: auto;

        order: 3;

        flex: none;

        display: flex;
        justify-content: center;
        align-items: center;
    }


    /* =========================================================
       Login Card
       ========================================================= */

    .regulus-login__card {
        position: relative;

        width: 100%;
        max-width: 500px;

        margin: 0 auto;
    }


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

    .regulus-login__background {
        background-position: calc(50% - 62px) center;
    }


    .regulus-login__branding {
        max-width: 180px;

        margin-bottom: 28px;

        border-radius: 16px;

        padding: 2% 2% 1.5% 2%;

        order: 1;

        margin-left: auto;
        margin-right: auto;
    }


    .regulus-login__logo {
        max-width: 165px;
    }


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

    .regulus-login__hero {
        width: 100%;
        max-width: 500px;

        order: 2;

        text-align: center;
    }


    .regulus-login__eyebrow {
        font-size: 11px;

        letter-spacing: 1.8px;

        margin-bottom: 10px;
    }


    .regulus-login__hero h1 {
        font-size: 26px;

        line-height: 1.18;

        margin-bottom: 14px;
    }


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

    .regulus-login__description {
        width: 100%;
        max-width: 500px;

        margin: 10px auto 0;

        color: rgba(255, 255, 255, 0.78);

        font-size: 13px;

        line-height: 1.6;

        text-align: center;

        order: 4;
    }

    


    /* =========================================================
       Mobile Secondary Content
       ========================================================= */

    /* ---------------------------------------------------------
    Mobile Secondary Content Alignment
    --------------------------------------------------------- */

    .regulus-login__description,
    .regulus-login__features,
    .regulus-login__security {
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    /* ---------------------------------------------------------
    Mobile Features
    --------------------------------------------------------- */

    .regulus-login__features {
        display: grid;

        grid-template-columns: 1fr;

        width: fit-content;
        max-width: 100%;

        margin-top: 24px;
        margin-left: auto;
        margin-right: auto;

        order: 5;

        row-gap: 10px;
    }


    /* Feature item */

    .regulus-login__feature {
        gap: 12px;

        min-height: 38px;

        font-size: 13px;
    }


    /* Feature icon */

    .regulus-login__feature-icon {
        width: 34px;
        height: 34px;

        border-radius: 8px;

        font-size: 14px;
    }


    /* ---------------------------------------------------------
    Mobile Security
    --------------------------------------------------------- */

    .regulus-login__security {
        display: flex;

        width: fit-content;
        max-width: 100%;

        margin-top: 22px;
        margin-left: auto;
        margin-right: auto;

        padding-top: 0;

        order: 6;

        font-size: 13px;
    }

    .regulus-login__security-icon {
        width: 30px;
        height: 30px;

        font-size: 18px;
    }

    .regulus-register-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .regulus-checkbox {
        font-size: 12px;
    }

    .regulus-checkbox__label {
        font-size: 12px;
    }

    .regulus-register-terms {
        margin-top: 16px;

        padding: 0 8px;

        font-size: 10px;
        line-height: 1.55;
    }

    /* =====================================================
       Register Security Row
    ===================================================== */

    .regulus-register-security-row {
        flex-direction: column;

        align-items: flex-start;

        width: 100%;

        gap: 12px;
    }


    /* ---------------------------------------------------------
       Authorized checkbox
    --------------------------------------------------------- */

    .regulus-register-security-row .regulus-checkbox {
        width: 100%;
    }


    /* ---------------------------------------------------------
       CAPTCHA wrapper
    --------------------------------------------------------- */

    .regulus-register-captcha {
        display: flex;

        justify-content: center;
        align-items: center;

        width: 100%;

        min-height: 62px;

        margin: 0;
        padding: 0;

        overflow: visible;
    }


    /* ---------------------------------------------------------
       Google CAPTCHA
    --------------------------------------------------------- */

    .regulus-register-captcha .g-recaptcha {
        transform: scale(0.68);

        transform-origin: center center;

        margin: 0;
        padding: 0;
    }

}

@media (min-width: 770px) and (max-width: 1250px) {

    .regulus-login__features {
        grid-template-columns: 1fr;

        column-gap: 0;

        max-width: 440px;
    }

}