/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    height: 42px;
    background: #4b4846;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    font-size: 13px;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar a {
    color: #fff;
}

.top-bar i {
    margin-right: 6px;
}


/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    height: 82px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    position: relative;
    z-index: 10;
}

.logo img {
    width: 145px;
    height: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-menu a {
    color: #ec2149;
    font-weight: 500;
    font-size: 15px;
}

.nav-menu .login-btn {
    background: #df3153;
    color: #fff;
    padding: 12px 26px;
    border-radius: 5px;
}

.nav-menu .register-btn {
    border: 1px solid #df3153;
    color: #df3153;
    padding: 11px 25px;
    border-radius: 5px;
}

.nav-menu a i {
    margin-right: 6px;
}


/* =========================================================
   MAIN LOGIN CARD
========================================================= */

.login-wrapper {
    width: 90%;
    max-width: 1230px;
    margin: 48px auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 46% 54%;

    box-shadow: 0 12px 45px rgba(45, 30, 30, .08);
}


/* =========================================================
   LEFT PANEL
========================================================= */

.login-left {
    position: relative;
    min-height: 720px;
    padding: 52px 58px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(255, 150, 170, .18),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #fff8ed,
            #fff2ee
        );
}

.login-left::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, .5);
    border-radius: 50%;
    bottom: -180px;
    left: -160px;
}

.left-content {
    position: relative;
    z-index: inherit;
}

.welcome-text {
    font-size: 27px;
    color: #374151;
    margin-bottom: 5px;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 55px;
    line-height: 1.03;
    margin-top: 8px;
    color: #252b3a;
}

.hero-title span {
    color: #e62952;
}

.hero-line {
    width: 48px;
    height: 4px;
    background: #e62952;
    margin: 22px 0;
    border-radius: 10px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: #687080;
    max-width: 360px;
}


/* =========================================================
   DECORATIVE HEART
========================================================= */

.heart {
    position: absolute;
    right: 60px;
    top: 65px;
    font-size: 45px;
    color: #f36a83;
    transform: rotate(-12deg);
}

.dotted-line {
    position: absolute;
    right: 40px;
    top: 200px;
    font-size: 70px;
    color: #f5a4b5;
    opacity: .7;
}


/* =========================================================
   COUPLE IMAGE
========================================================= */

.couple-image {
    position: absolute;
    width: 430px;
    max-width: 90%;
    left: 50%;
    bottom: 165px;
    transform: translateX(-50%);
    z-index: 2;
}


/* =========================================================
   RIGHT LOGIN FORM
========================================================= */

.login-right {
    padding: 72px 70px 55px;
    display: flex;
    align-items: center;
}

.login-form-container {
    width: 100%;
    max-width: 540px;
    margin: auto;
}


/* =========================================================
   LOCK ICON
========================================================= */

.lock-icon {
    width: 62px;
    height: 62px;
    background: #fff0f4;
    color: #e62952;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 25px;
    margin: 0 auto 20px;
}


/* =========================================================
   FORM HEADING
========================================================= */

.form-heading {
    text-align: center;
    margin-bottom: 30px;
}

.form-heading small {
    color: #e62952;
    font-size: 17px;
    font-weight: 500;
}

.form-heading h1 {
    font-size: 31px;
    margin-top: 7px;
    color: #252b3a;
}

.form-divider {
    height: 1px;
    background: #ececec;
    margin-bottom: 32px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #292d35;
    margin-bottom: 9px;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 17px;
    top: 50%;
    transform: translateY(-50%);

    color: #737a84;
    font-size: 16px;

    z-index: 2;
    pointer-events: none;
}

.form-control {
    width: 100%;
    height: 52px;

    border: 1px solid #dedfe3;
    border-radius: 8px;

    padding: 0 48px;

    font-size: 14px;
    font-family: inherit;

    outline: none;
    transition: .2s;

    color: #333;
    background: #fff;

    box-sizing: border-box;
}

.form-control:focus {
    border-color: #e62952;
    box-shadow: 0 0 0 3px rgba(230, 41, 82, .08);
}

.form-control::placeholder {
    color: #a0a5ad;
}


/* =========================================================
   PASSWORD TOGGLE
========================================================= */

.password-toggle {
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);

    border: 0;
    background: transparent;

    color: #747a84;
    cursor: pointer;

    font-size: 16px;
    padding: 4px;
    z-index: 3;
}

.password-toggle:hover {
    color: #e62952;
}


/* =========================================================
   LOGIN OPTIONS
========================================================= */

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 3px 0 25px;
    font-size: 13px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #687080;
}

.remember input {
    accent-color: #e62952;
}

.forgot {
    color: #e62952;
    font-weight: 500;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.submit-btn {
    width: 100%;
    height: 52px;

    border: none;
    border-radius: 8px;

    background: #27b978;
    color: white;

    font-family: inherit;
    font-size: 16px;
    font-weight: 600;

    cursor: pointer;
    transition: .2s;
}

.submit-btn i {
    margin-right: 8px;
}

.submit-btn:hover {
    background: #20a66b;
    transform: translateY(-1px);
}


/* =========================================================
   OR DIVIDER
========================================================= */

.or-divider {
    display: flex;
    align-items: center;
    gap: 15px;

    margin: 28px 0;

    color: #999;
    font-size: 13px;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}


/* =========================================================
   GOOGLE BUTTON
========================================================= */

.google-btn {
    width: 100%;
    height: 51px;

    background: #fff;
    border: 1px solid #dddfe4;
    border-radius: 8px;

    font-family: inherit;
    font-size: 15px;
    color: #444;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    transition: .2s;
}

.google-btn:hover {
    border-color: #c9cbd1;
    background: #fafafa;
}

.google-icon {
    color: #4285f4;
    font-size: 18px;
}


/* =========================================================
   SIGNUP
========================================================= */

.signup-text {
    text-align: center;
    margin-top: 27px;

    color: #69717c;
    font-size: 14px;
}

.signup-text a {
    color: #e62952;
    font-weight: 600;
}


/* =========================================================
   BOTTOM TRUST
========================================================= */

.bottom-trust {
    width: 90%;
    max-width: 1230px;

    margin: -25px auto 45px;

    background: #fff;
    border: 1px solid #f5dfe4;
    border-radius: 13px;

    padding: 20px 30px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    box-shadow: 0 4px 18px rgba(50, 30, 30, .03);
}

.bottom-item {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    border-right: 1px solid #eee;
}

.bottom-item:last-child {
    border-right: none;
}

.bottom-icon {
    color: #e62952;
    font-size: 25px;
    min-width: 30px;
    text-align: center;
}

.bottom-item strong {
    font-size: 13px;
    display: block;
}

.bottom-item span {
    color: #737984;
    font-size: 11px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .nav-menu {
        gap: 15px;
    }

    .login-wrapper {
        width: 94%;
        grid-template-columns: 1fr;
    }

    .login-left {
        min-height: 600px;
    }

    .login-right {
        padding: 55px 45px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }


    /* ---------------------------------
       CONTAINER
    --------------------------------- */

    .containerr {
        width: calc(100% - 12px) !important;
        max-width: none !important;

        margin-left: 6px !important;
        margin-right: 6px !important;

        padding-left: 0 !important;
        padding-right: 0 !important;

        box-sizing: border-box;
    }


    /* ---------------------------------
       TOP BAR
    --------------------------------- */

    .top-bar {
        display: none;
    }


    /* ---------------------------------
       NAVBAR
    --------------------------------- */

    .navbar {
        width: 100%;
        height: 68px;
        padding: 0 14px;

        box-sizing: border-box;
    }

    .logo img {
        width: 115px;
    }

    .nav-menu {
        gap: 6px;
    }

    .nav-menu a:not(.login-btn):not(.register-btn) {
        display: none;
    }

    .nav-menu .login-btn,
    .nav-menu .register-btn {
        padding: 8px 11px;
        font-size: 11px;
        border-radius: 5px;
    }

    .nav-menu .login-btn i,
    .nav-menu .register-btn i {
        display: none;
    }


    /* ---------------------------------
       MAIN CARD
       FORM FIRST
    --------------------------------- */

    .login-wrapper {
        width: 100% !important;
        max-width: none !important;

        margin: 18px 0 20px !important;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        border-radius: 14px;

        box-sizing: border-box;

        box-shadow: 0 8px 28px rgba(45, 30, 30, .08);
    }


    /* ---------------------------------
       LOGIN FORM
    --------------------------------- */

    .login-right {
        order: 1;

        width: 100%;

        padding: 34px 18px 36px;

        display: flex;
        align-items: center;

        box-sizing: border-box;
    }

    .login-form-container {
        width: 100%;
        max-width: none;

        margin: 0 auto;
    }


    /* ---------------------------------
       LOCK
    --------------------------------- */

    .lock-icon {
        width: 54px;
        height: 54px;

        font-size: 21px;

        margin: 0 auto 15px;
    }


    /* ---------------------------------
       HEADING
    --------------------------------- */

    .form-heading {
        margin-bottom: 22px;
    }

    .form-heading small {
        font-size: 14px;
    }

    .form-heading h1 {
        font-size: 25px;
        line-height: 1.25;

        margin-top: 6px;
    }

    .form-divider {
        margin-bottom: 23px;
    }


    /* ---------------------------------
       FORM
    --------------------------------- */

    .form-group {
        margin-bottom: 17px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .form-control {
        width: 100%;
        height: 50px;

        font-size: 14px;

        padding-left: 45px;
        padding-right: 45px;

        box-sizing: border-box;
    }

    .input-icon {
        left: 15px;
        font-size: 15px;
    }

    .password-toggle {
        right: 14px;
        font-size: 15px;
    }


    /* ---------------------------------
       REMEMBER / FORGOT
    --------------------------------- */

    .login-options {
        margin: 2px 0 21px;

        font-size: 12px;

        gap: 10px;
    }

    .remember {
        gap: 5px;
    }


    /* ---------------------------------
       BUTTON
    --------------------------------- */

    .submit-btn {
        width: 100%;
        height: 50px;

        font-size: 15px;
    }


    /* ---------------------------------
       GOOGLE
    --------------------------------- */

    .or-divider {
        margin: 22px 0;

        gap: 10px;

        font-size: 12px;
    }

    .google-btn {
        height: 49px;
        font-size: 14px;
    }


    /* ---------------------------------
       SIGNUP
    --------------------------------- */

    .signup-text {
        margin-top: 21px;
        font-size: 13px;
    }


    /* ---------------------------------
       LEFT DETAILS SECOND
    --------------------------------- */

    .login-left {
        order: 2;

        width: 100%;

        min-height: 515px;

        padding: 34px 24px 0;

        box-sizing: border-box;
    }


    /* ---------------------------------
       LEFT CONTENT
    --------------------------------- */

    .welcome-text {
        font-size: 21px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.05;
    }

    .hero-description {
        font-size: 13px;
        line-height: 1.5;

        max-width: 280px;
    }

    .hero-line {
        margin: 17px 0;
    }


    /* ---------------------------------
       DECORATION
    --------------------------------- */

    .heart {
        right: 22px;
        top: 42px;

        font-size: 34px;
    }

    .dotted-line {
        right: 8px;
        top: 130px;

        font-size: 48px;
    }


    /* ---------------------------------
       COUPLE IMAGE
    --------------------------------- */

    .couple-image {
        width: 330px;
        max-width: 92%;

        left: 50%;
        bottom: 125px;
    }


    /* ---------------------------------
       TRUST BOX
    --------------------------------- */

    .trust-box {
        left: 12px;
        right: 12px;
        bottom: 16px;
        z-index: inherit;
        padding: 13px 5px;

        border-radius: 15px;

        grid-template-columns: repeat(3, 1fr);

        gap: 4px;

        box-sizing: border-box;
    }

    .trust-icon {
        width: 38px;
        height: 38px;

        font-size: 16px;

        margin-bottom: 7px;
    }

    .trust-item strong {
        font-size: 10px;
        line-height: 1.2;
    }

    .trust-item span {
        display: none;
    }


    /* ---------------------------------
       BOTTOM TRUST
    --------------------------------- */

    .bottom-trust {
        width: calc(100% - 12px);

        max-width: none;

        margin: 10px 6px 25px;

        padding: 14px 12px;

        display: grid;

        grid-template-columns: 1fr;

        gap: 0;

        box-sizing: border-box;

        border-radius: 12px;
    }

    .bottom-item {
        min-height: 55px;

        border-right: none;
        border-bottom: 1px solid #eee;

        justify-content: flex-start;

        padding: 8px 5px;
    }

    .bottom-item:last-child {
        border-bottom: none;
    }

    .bottom-icon {
        font-size: 21px;
        min-width: 28px;
    }

    .bottom-item strong {
        font-size: 12px;
    }

    .bottom-item span {
        font-size: 10px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .navbar {
        height: 64px;
        padding: 0 11px;
    }

    .logo img {
        width: 105px;
    }

    .nav-menu {
        gap: 5px;
    }

    .nav-menu .login-btn {
        padding: 7px 10px;
        font-size: 10px;
    }

    .nav-menu .register-btn {
        padding: 7px 10px;
        font-size: 10px;
    }


    /* MAIN CARD */

    .login-wrapper {
        margin-top: 14px !important;
        margin-bottom: 16px !important;

        border-radius: 12px;
    }


    /* FORM */

    .login-right {
        padding: 28px 14px 30px;
    }

    .lock-icon {
        width: 50px;
        height: 50px;

        font-size: 20px;

        margin-bottom: 13px;
    }

    .form-heading {
        margin-bottom: 19px;
    }

    .form-heading small {
        font-size: 13px;
    }

    .form-heading h1 {
        font-size: 23px;
    }

    .form-divider {
        margin-bottom: 20px;
    }

    .form-control {
        height: 48px;

        padding-left: 42px;
        padding-right: 42px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .submit-btn {
        height: 48px;
        font-size: 14px;
    }

    .login-options {
        font-size: 11px;
    }

    .google-btn {
        height: 47px;
        font-size: 13px;
    }

    .signup-text {
        font-size: 12px;
        margin-top: 18px;
    }


    /* LEFT */

    .login-left {
        min-height: 450px;

        padding: 30px 20px 0;
    }

    .welcome-text {
        font-size: 19px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 12px;
        max-width: 245px;
    }

    .heart {
        right: 16px;
        top: 37px;
        font-size: 30px;
    }

    .dotted-line {
        right: 5px;
        top: 118px;
        font-size: 42px;
    }

    .couple-image {
        width: 290px;
        max-width: 90%;

        bottom: 110px;
    }


   
  

    .bottom-item {
        min-height: 50px;
    }

    .bottom-icon {
        font-size: 19px;
    }

    .bottom-item strong {
        font-size: 11px;
    }

    .bottom-item span {
        font-size: 9px;
    }
}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 350px) {

    .login-right {
        padding-left: 12px;
        padding-right: 12px;
    }

    .form-heading h1 {
        font-size: 21px;
    }

    .login-options {
        font-size: 10px;
    }

    .login-left {
        min-height: 425px;
    }

    .hero-title {
        font-size: 31px;
    }

    .couple-image {
        width: 260px;
    }

    .trust-item strong {
        font-size: 8px;
    }
}


/* ================================
   CUSTOM SELECT DROPDOWN
================================ */

.input-wrapper {
    position: relative;
    width: 100%;
}

/* Select with icon */
.input-wrapper select.form-control {
    width: 100%;
    height: 52px;

    padding: 0 42px 0 48px;

    border: 1px solid #dedfe3;
    border-radius: 8px;

    background-color: #fff;
    color: #333;

    font-family: inherit;
    font-size: 14px;
    font-weight: 400;

    outline: none;
    cursor: pointer;

    box-sizing: border-box;

    /* Remove browser default */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    transition: all .2s ease;
}

/* Dropdown arrow */
.input-wrapper:has(select.form-control)::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    right: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #737a84;
    font-size: 15px;

    pointer-events: none;
}

/* Left icon */
.input-wrapper .input-icon {
    position: absolute;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #737a84;
    font-size: 16px;

    z-index: 3;
    pointer-events: none;
}

/* Focus */
.input-wrapper select.form-control:focus {
    border-color: #e62952;

    box-shadow:
        0 0 0 3px rgba(230, 41, 82, .08);
}

/* Hover */
.input-wrapper select.form-control:hover {
    border-color: #cfd1d6;
}

/* Placeholder option */
.input-wrapper select.form-control option:first-child {
    color: #a0a5ad;
}

/* Normal options */
.input-wrapper select.form-control option {
    color: #333;
    background: #fff;
    padding: 10px;
}

@media (max-width: 700px) {

    .input-wrapper select.form-control {
        width: 100%;
        height: 50px;

        padding-left: 45px;
        padding-right: 40px;

        font-size: 14px;
        border-radius: 8px;
    }

    .input-wrapper .input-icon {
        left: 15px;
        font-size: 15px;
    }

    .input-wrapper:has(select.form-control)::after {
        right: 15px;
        font-size: 14px;
    }
}

/* =========================================
   REGISTER PAGE
========================================= */

.login-wrapper {
    width: 90%;
    max-width: 1230px;
    margin: 35px auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;

    display: grid;
    grid-template-columns: 46% 54%;

    box-shadow: 0 12px 45px rgba(45,30,30,.08);
}


/* =========================================
   LEFT
========================================= */

.login-left {
    position: relative;
    min-height: 720px;
    padding: 40px 58px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,150,170,.20),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            #fff8ed,
            #fff1f4
        );
}

.left-content {
    position: relative;
    z-index: inherit;
}

.register-logo {
    margin-bottom: 38px;
}

.register-logo img {
    width: 175px;
    height: auto;
    display: block;
}

.welcome-text {
    font-size: 27px;
    color: #303846;
    margin-bottom: 0;
}

.hero-title {
    font-family: "Playfair Display", serif;
    font-size: 58px;
    line-height: .98;
    margin: 4px 0 8px;
    color: #252b3a;
}

.hero-title span {
    color: #d92b55;
}

.journey-subtitle {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-size: 25px;
    color: #333;
    margin-top: 10px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.55;
    color: #505866;
    margin-top: 22px;
}

.hero-description strong {
    color: #e62952;
    font-weight: 700;
}

.hero-line {
    width: 52px;
    height: 4px;
    background: #e62952;
    border-radius: 10px;
    margin-top: 15px;
}


/* HEART */

.heart {
    position: absolute;
    right: 20px;
    top: 75px;
    font-size: 55px;
    color: #f58ba1;
    transform: rotate(-12deg);
}


/* DECORATIVE */

.dotted-line {
    position: absolute;
    right: 45px;
    top: 340px;
    color: #ef9aad;
    font-size: 55px;
}


/* =========================================
   COUPLE IMAGE
========================================= */

.couple-image {
    position: absolute;
   
    width: 450px;
    max-width: 90%;

    left: 50%;
    bottom: 150px;

    transform: translateX(-50%);

    z-index: inherit;
}


/* =========================================
   TRUST BOX
========================================= */

.trust-box {
    position: absolute;

    z-index: inherit;

    bottom: 52px;
    left: 32px;
    right: 32px;

    background: rgba(255,255,255,.97);

    border-radius: 17px;

    padding: 17px 12px;

    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 8px;

    box-shadow:
        0 8px 25px rgba(40,20,20,.10);
}

.trust-item {
    text-align: center;
}

.trust-icon {
    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #fff0f4;
    color: #e62952;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto auto 8px;

    font-size: 19px;
}

.trust-item strong {
    display: block;
    color: #303642;
    font-size: 12px;
    margin-bottom: 4px;
}

.trust-item span {
    display: block;
    color: #737984;
    font-size: 10px;
    line-height: 1.4;
}


/* =========================================
   LEFT BOTTOM
========================================= */

.left-bottom-trust {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 10px;

    height: 42px;

    border-radius: 10px;

    background: rgba(255,230,237,.75);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    color: #4f5560;

    font-size: 12px;

    z-index: 7;
}

.left-bottom-trust i {
    color: #e62952;
    font-size: 19px;
}

.left-bottom-trust strong {
    color: #e62952;
}


/* =========================================
   RIGHT
========================================= */

.login-right {
    padding: 65px 60px 40px;

    display: flex;
    align-items: flex-start;
}

.login-form-container {
    width: 100%;
    max-width: 600px;
    margin: auto;
}


/* =========================================
   HEADER
========================================= */

.register-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 32px;
}

.register-header small {
    display: block;

    color: #e62952;
    font-size: 18px;
    font-weight: 500;

    margin-bottom: 5px;
}

.register-header h1 {
    margin: 0;

    color: #26354d;

    font-size: 40px;
    line-height: 1.15;
    font-weight: 700;
}

.register-header p {
    margin: 10px 0 0;

    color: #687080;
    font-size: 15px;
}


/* =========================================
   SECURITY BADGE
========================================= */

.secure-badge {
    width: 72px;
    height: 72px;

    border: 2px solid #f3a5b6;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    color: #e62952;

    position: relative;

    flex-shrink: 0;
}

.secure-badge-icon {
    font-size: 16px;
}

.secure-badge strong {
    font-size: 11px;
    line-height: 1;
}

.secure-badge span {
    font-size: 9px;
}


/* =========================================
   FORM
========================================= */

.form-divider {
    height: 1px;
    background: #eeeeee;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group .lb {
    display: block;

    color: #252b35;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 8px;
}

.form-group .lb i {
    margin-right: 7px;
    font-size: 13px;
}


/* INPUT */

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;

    left: 17px;
    top: 50%;

    transform: translateY(-50%);

    color: #707782;
    font-size: 15px;

    z-index: 3;

    pointer-events: none;
}

.form-control {
    width: 100%;
    height: 46px;

    border: 1px solid #dedfe3;
    border-radius: 7px;

    padding: 0 45px 0 47px;

    font-size: 14px;

    color: #333;
    background: #fff;

    outline: none;

    box-sizing: border-box;

    transition: .2s;
}

.form-control:focus {
    border-color: #e62952;

    box-shadow:
        0 0 0 3px rgba(230,41,82,.07);
}


/* =========================================
   SELECT
========================================= */

.custom-select {
    appearance: auto;
    -webkit-appearance: auto;
    cursor: pointer;
}


/* =========================================
   PHONE
========================================= */

.phone-row {
    display: flex;
    gap: 12px;
}

.phone-code {
    width: 140px;
    flex-shrink: 0;
}

.phone-number {
    flex: 1;
}


/* =========================================
   PASSWORD
========================================= */

.password-toggle {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: translateY(-50%);

    border: 0;
    background: transparent;

    color: #737a84;

    cursor: pointer;

    font-size: 15px;

    padding: 4px;

    z-index: 5;
}

.password-toggle:hover {
    color: #e62952;
}


/* =========================================
   PRIVACY
========================================= */

.privacy-box {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 11px 14px;

    margin: 7px 0 20px;

    background: #effbf3;

    border: 1px solid #c8ead2;

    border-radius: 7px;
}

.privacy-icon {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #d8f4df;

    color: #39965b;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.privacy-box strong {
    display: block;

    color: #287c47;

    font-size: 13px;

    margin-bottom: 2px;
}

.privacy-box span {
    display: block;

    color: #4d7d5c;

    font-size: 11px;
}


/* =========================================
   TERMS
========================================= */

.terms-group {
    margin-bottom: 18px;
}

.terms-label {
    display: flex;
    align-items: flex-start;

    gap: 9px;

    color: #6d7480;

    font-size: 12px;

    line-height: 1.7;

    cursor: pointer;
}

.terms-label input {
    width: 17px;
    height: 17px;

    margin-top: 2px;

    accent-color: #e62952;

    flex-shrink: 0;
}

.terms-label a {
    color: #e62952;
    font-weight: 500;
}


/* =========================================
   CREATE BUTTON
========================================= */

.submit-btn {
    width: 100%;
    height: 50px;

    border: 0;
    border-radius: 7px;

    background: #e62962;

    color: #fff;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: .2s;
}

.submit-btn i {
    margin-right: 7px;
}

.submit-btn:hover {
    background: #d81e55;
    transform: translateY(-1px);
}


/* =========================================
   GOOGLE
========================================= */

.or-divider {
    display: flex;
    align-items: center;

    gap: 15px;

    margin: 17px 0;

    color: #999;

    font-size: 12px;
}

.or-divider::before,
.or-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #e5e5e5;
}

.google-btn {
    width: 100%;
    height: 46px;

    border: 1px solid #dddfe4;
    border-radius: 7px;

    background: #fff;

    color: #555;

    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    cursor: pointer;
}

.google-logo {
    font-size: 18px;
    font-weight: 700;
    color: #4285f4;
}


/* =========================================
   LOGIN
========================================= */

.signup-text {
    text-align: center;

    margin-top: 18px;

    color: #6b7280;

    font-size: 13px;
}

.signup-text a {
    color: #e62952;
    font-weight: 600;
    text-decoration: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .login-wrapper {
        width: calc(100% - 20px) !important;

        margin: 12px auto 25px !important;

        display: flex !important;
        flex-direction: column !important;

        border-radius: 15px;
    }

    /* FORM FIRST */

    .login-right {
        order: 1;

        width: 100%;

        padding: 30px 18px 25px;

        box-sizing: border-box;
    }

    /* LEFT SECOND */

    .login-left {
        order: 2;

        width: 100%;

        min-height: 540px;

        padding: 28px 22px 0;

        box-sizing: border-box;
    }

    .register-logo {
        margin-bottom: 22px;
    }

    .register-logo img {
        width: 140px;
    }

    .welcome-text {
        font-size: 21px;
    }

    .hero-title {
        font-size: 42px;
    }

    .journey-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 14px;
    }

    .couple-image {
        width: 350px;
        max-width: 92%;
        bottom: 135px;
    }

   

    .left-bottom-trust {
        left: 14px;
        right: 14px;
        bottom: 8px;

        font-size: 10px;
    }

    .register-header h1 {
        font-size: 28px;
    }

    .register-header small {
        font-size: 15px;
    }

    .register-header p {
        font-size: 12px;
    }

    .secure-badge {
        width: 58px;
        height: 58px;
    }

    .secure-badge-icon {
        font-size: 13px;
    }

    .secure-badge strong {
        font-size: 9px;
    }

    .secure-badge span {
        font-size: 7px;
    }

    .phone-row {
        gap: 8px;
    }

    .phone-code {
        width: 105px;
    }

    .form-control {
        height: 48px;
    }

    .privacy-box {
        padding: 10px;
    }

    .privacy-box span {
        font-size: 10px;
    }
}


@media (max-width: 400px) {

    .login-wrapper {
        width: calc(100% - 12px) !important;
    }

    .login-right {
        padding: 25px 14px 22px;
    }

    .login-left {
        min-height: 480px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-title {
        font-size: 36px;
    }

    .journey-subtitle {
        font-size: 18px;
    }

    .couple-image {
        width: 310px;
        bottom: 125px;
    }

    .register-header h1 {
        font-size: 25px;
    }

    .secure-badge {
        width: 52px;
        height: 52px;
    }

    .phone-code {
        width: 95px;
    }
}