/* =========================================================
   AUTORIDE LOGIN PAGE
   ========================================================= */
.page-id-24278 .theme-page .theme-page-content {
    padding-top: 0 !important;
    padding-bottom: 0;
}
html body.page-id-24278 .theme-main, .theme-page-content .theme-main.theme-gutenberg-block>* {
     width: 100% !important;
}
html .page-id-24278 .vc_column_container {
    margin-bottom: 0;
}
.autoride-auth-page {
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    position: relative;
    overflow: hidden;
    background: #001414;
}

.login-page-logo img{
    margin: 0 auto;
    padding-bottom: 40px !important;
    max-width:80% !important;
}

.page-id-24278 .floating-field label{
    background:none !important;
}

#autoride-register-form button, .login-submit-row button{
    font-weight:600 !important;
    line-height:5px !important;
    color:black !important;
}
/* =========================================================
   LEFT IMAGE
   ========================================================= */

.autoride-auth-image {
    width: 55%;
    min-height: 100vh;
    position: relative;
    z-index: 2;

    background-image: url("/wp-content/uploads/2025/12/PrimeVoyageX_Left-BG.webp");
    background-size: cover;
    background-position: center center;
    background-position-x: 64% !important;
    background-repeat: no-repeat;
    /*
     * Creates the diagonal edge
     */
    clip-path: polygon(
        0 0,
        100% 0,
        67% 100%,
        0 100%
    );
}


/* Optional subtle image overlay */

.autoride-auth-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.03);
    pointer-events: none;
}


/* =========================================================
   RIGHT PANEL
   ========================================================= */

.autoride-auth-panel {
    width: 45%;
    min-height: 100vh;

    margin-left: -7%;
    padding-left: 8%;

    background: #001414;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 1;
}


/* =========================================================
   FORM CONTAINER
   ========================================================= */

.autoride-auth-content {
    width: 100%;
    max-width: 440px;
    padding: 40px 35px;
}


/* =========================================================
   FORM
   ========================================================= */

.autoride-auth-form {
    width: 100%;
    display: none;
}

.autoride-auth-form.active {
    display: block;
}


/* =========================================================
   HEADING
   ========================================================= */

.autoride-auth-form .auth-heading {
    margin: 0 0 5px 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.autoride-auth-form .auth-subtitle {
    margin: 0 0 28px 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px !important;
    line-height: 1.5;
    font-weight: 400;
}


/* =========================================================
   INPUTS
   ========================================================= */

.autoride-auth-form .floating-field {
    position: relative;
    margin: 0 0 20px 0;
}

.autoride-auth-form .floating-field input {
    width: 100%;
    height: 48px;
    padding: 15px 42px 5px 14px;
    border: 1px solid rgba(69, 153, 153, 0.28);
    border-radius: 20px;
    background: rgba(0, 20, 20, 0.5);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 400;
    outline: none;
    box-sizing: border-box;
    transition:
    border-color 0.2s ease,
    background 0.2s ease;
}


/* Input focus */

.autoride-auth-form .floating-field input:focus {
    border-color: #3e9a9a;
    background: rgba(0, 25, 25, 0.8);
}


/* Floating label */

.autoride-auth-form .floating-field label {
    position: absolute;

    left: 14px;
    top: 50%;

    transform: translateY(-50%);

    padding: 0 3px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
    font-weight: 400;

    pointer-events: none;

    transition:
        top 0.18s ease,
        font-size 0.18s ease,
        color 0.18s ease;
}


/* Move label up when focused or filled */

.autoride-auth-form .floating-field input:focus + label,
.autoride-auth-form .floating-field input:not(:placeholder-shown) + label {
   top: 0;
    color: #96ffff;
    font-size: 10px;
    background: #001414 !important;
}


/* =========================================================
   PASSWORD BUTTON
   ========================================================= */

.autoride-auth-form .password-field {
    position: relative;
}

.autoride-auth-form .show-password-input {
    position: absolute;
    right: 10px;
    top: 50%;
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    z-index: 5;
}


/* =========================================================
   REMEMBER ME
   ========================================================= */

.autoride-auth-form .remember-me-row {
    margin: -4px 0 20px;
}

.autoride-auth-form .remember-me-row label {
    display: flex !important;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    cursor: pointer;
}

.autoride-auth-form .remember-me-row input {
    width: 13px;
    height: 13px;
    margin: 0;
    accent-color: #439b9b;
}


/* =========================================================
   LOGIN BUTTON
   ========================================================= */

.autoride-auth-form .login-submit-row {
    margin: 0 0 15px;
}

.autoride-auth-form .full-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 2px;
    background: #419a9a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.autoride-auth-form .full-btn:hover {
    background: #50aaaa;
    transform: translateY(-1px);
}


/* =========================================================
   LOST PASSWORD
   ========================================================= */

.autoride-auth-form .auth-links {
    margin: 0 0 28px;

    text-align: center;
}

.autoride-auth-form .auth-links a {
    color: rgba(255, 255, 255, 0.6);

    font-size: 11px;

    text-decoration: none;
}

.autoride-auth-form .auth-links a:hover {
    color: #55a9a9;
}


/* =========================================================
   SWITCH LOGIN / REGISTER
   ========================================================= */

.autoride-auth-form .switch-text {
    margin: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    border-top: 1px solid;
}

.autoride-auth-form .switch-text a {
    color: #f4c557;
    font-weight: 600;
    text-decoration: none;
    font-size:16px !important;
}

.autoride-auth-form .switch-text a:hover {
    color: #65b5b5;
}
.login-submit-row button:hover{
    color:#fff !important;
}

/* =========================================================
   REGISTER TERMS
   ========================================================= */

.autoride-auth-form .auth-terms {
    margin: 5px 0 22px;
    color: rgba(255, 255, 255, 0.55);
    font-weight:400;
    font-size: 12px;
    line-height: 1.6;
}

.autoride-auth-form .auth-terms a {
    text-decoration: none;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #f4c557;
}


/* =========================================================
   WOOCOMMERCE NOTICES
   ========================================================= */


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .autoride-auth-image {
        width: 45%;

        clip-path: polygon(
            0 0,
            100% 0,
            65% 100%,
            0 100%
        );
    }

    .autoride-auth-panel {
        width: 55%;

        margin-left: -6%;
        padding-left: 7%;
    }

    .autoride-auth-content {
        max-width: 390px;
        padding: 30px 25px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .page-id-24278 .woocommerce-notices-wrapper{
        position: absolute;
        bottom: 50px;
        z-index: 99;
        width: 100%;
        right: 0;
    }
    .page-id-24278 .theme-component-notice{
        padding: 10px;
        justify-content: center;
        display: flex;
        background: #fff6f6b3;
        width: fit-content;
        margin: 0 auto;
        border-radius: 10px;
    }
    
    .autoride-auth-page {
        display: block;

        min-height: 100vh;
        min-height: 100dvh;

        overflow: visible;
    }


    /* Image becomes top section */

    .autoride-auth-image {
        width: 100%;
        height: 260px;
        min-height: 0;
        display:none;
        clip-path: none;

        background-position: center 35%;
    }


    /* Login area */

    .autoride-auth-panel {
        width: 100%;

        min-height: calc(100vh - 260px);
        min-height: calc(100dvh - 260px);

        margin: 0;
        padding: 0;

        display: flex;
        align-items: flex-start;
        justify-content: center;
    }


    .autoride-auth-content {
        width: 100%;
        max-width: 500px;

        padding: 45px 25px 50px;
    }


    .autoride-auth-form .auth-heading {
        font-size: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .autoride-auth-image {
        height: 210px;
    }

    .autoride-auth-panel {
        min-height: calc(100vh - 210px);
        min-height: calc(100dvh - 210px);
    }

    .autoride-auth-content {
        padding: 35px 20px 45px;
    }

    .autoride-auth-form .auth-heading {
        font-size: 22px;
    }

    .autoride-auth-form .auth-subtitle {
        margin-bottom: 24px;
    }

    .autoride-auth-form .floating-field input {
        height: 47px;
    }

}

.autoride-auth-content .woocommerce-notices-wrapper {
    margin-bottom: 15px;
}

.autoride-auth-content .woocommerce-error,
.autoride-auth-content .woocommerce-message,
.autoride-auth-content .woocommerce-info {
    margin: 0 0 15px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-id-24278 .woocommerce-notices-wrapper {
    visibility: hidden;
    opacity: 0;
}

.page-id-24278 .woocommerce-notices-wrapper.is-positioned {
    visibility: visible;
    opacity: 1;
}
.page-id-24278 .woocommerce-notices-wrapper {
    position: relative;
    width: 100%;
    right: auto;
    bottom: auto;
    margin: 15px 0 0;
    display: flex;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
}

.page-id-24278 .woocommerce-notices-wrapper.is-positioned {
    visibility: visible;
    opacity: 1;
}

.page-id-24278 .theme-component-notice {
    padding: 10px;
    justify-content: center;
    display: flex;
    background: #fff6f6b3;
    width: fit-content;
    margin: 0 auto;
    border-radius: 10px;
}

.page-id-24278 .theme-component-notice>.theme-component-notice-icon>span>span {
    top: 7px;
    left: 7px;
    background: red !important;
    z-index: 1;
    width: 35px;
    height: 35px;
    position: absolute;
    border-radius: 999px;
    font-size:30px !important;
}
.page-id-24278 .theme-component-notice>.theme-component-notice-icon>span:before{
    color:white !important;
    top: -7px;
    left: 10px;
    font-size:30px !important;
}
.page-id-24278 .theme-component-notice .theme-component-notice-content p{
    color: #8e1717 !important;
    line-height: normal;
    font-size: 15px;
}