@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400&display=swap");

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
}

body {
    margin: 0;
    background: #ff961c;
}

button,
input {
    font: inherit;
}

.petpay-wp-login {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    isolation: isolate;
    background-color: transparent;
    background-image: linear-gradient(147deg, #ff961c 0%, #f2295b 100%);
}

.petpay-wp-login::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.35;
    background-image: linear-gradient(rgba(255,122,0,.30), rgba(242,41,91,.32)), url("/assets/petpay-card/img/portals/repartidor/registro-hero-repartidor.png");
    background-position: center center;
    background-repeat: repeat;
    background-size: 55% auto;
    pointer-events: none;
}

/* HEADER REAL DE ELEMENTOR */

.petpay-wp-login__header {
    width: 100%;
    min-height: 66px;
    padding: 10px 50px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    background-color: #111111;
}

.petpay-wp-login__back {
    width: 20px;
    height: 20px;
    margin: 10px 0 -10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.petpay-wp-login__back svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.petpay-wp-login__logo {
    width: 6.205%;
    max-width: 6.205%;
    min-width: 82px;
    display: block;
    flex: 0 0 auto;
}

.petpay-wp-login__logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* BLOQUE CENTRAL REAL */

.petpay-wp-login__center {
    width: 100%;
    flex: 1 1 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.petpay-wp-login__box {
    width: 350px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}

.petpay-wp-login__title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
}

.petpay-wp-login__form {
    width: 100%;
}

.petpay-wp-login__form>div {
    width: 100%;
}

.petpay-wp-login__input {
    width: 100%;
    height: 40px;
    padding: 8px 16px;
    border: 0;
    border-radius: 8px;
    outline: none;
    background-color: #f5f5f5;
    color: #1e293b;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 24px;
    box-shadow: none;
}

.petpay-wp-login__input::placeholder {
    color: #9ca3af;
}

.petpay-wp-login__input:focus {
    border: 0;
    outline: 2px solid rgba(30, 41, 59, 0.24);
    outline-offset: 1px;
}

.petpay-wp-login__submit {
    width: 100%;
    min-height: 40px;
    margin-top: 10px;
    padding: 10px 30px;
    border: 0;
    border-radius: 8px;
    background-color: #111111;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.petpay-wp-login__submit:hover,
.petpay-wp-login__submit:focus {
    background-color: #111111;
    color: #ffffff;
}

.petpay-wp-login__divider {
    width: 100%;
    height: 1px;
    margin: 0;
    border: 0;
    background-color: #cccccc;
}

/* SEGUNDO PASO, SIN ALTERAR LA PRIMERA PANTALLA */

.petpay-wp-login__password-step[hidden] {
    display: none;
}

.petpay-wp-login__identity {
    width: 100%;
    min-height: 40px;
    margin-bottom: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    cursor: pointer;
}

.petpay-wp-login__identity span {
    max-width: 260px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.petpay-wp-login__identity small {
    text-decoration: underline;
}

.petpay-wp-login__password-field {
    position: relative;
}

.petpay-wp-login__password-field .petpay-wp-login__input {
    padding-right: 70px;
}

.petpay-wp-login__show-password {
    height: 30px;
    padding: 0 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: 0;
    border-radius: 6px;
    background: #e6e6e6;
    color: #1e293b;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    cursor: pointer;
}

.petpay-wp-login__remember {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 300;
    cursor: pointer;
}

.petpay-wp-login__remember input {
    width: 14px;
    height: 14px;
    margin: 0;
    accent-color: #111111;
}

.petpay-wp-login__actions {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.petpay-wp-login__actions a {
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-size: 10px;
    font-weight: 300;
    text-decoration: underline;
}

.petpay-wp-login__google {
    width: 100%;
    min-height: 40px;
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
}

/* MENSAJES */

.petpay-wp-login__message {
    padding: 10px 12px;
    border-radius: 8px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 1.4;
}

.petpay-wp-login__message--success {
    background: rgba(41, 92, 45, 0.75);
    color: #ffffff;
}

.petpay-wp-login__message--error {
    background: rgba(126, 25, 35, 0.78);
    color: #ffffff;
}

/* FOOTER REAL DE ELEMENTOR */

.petpay-wp-login__footer {
    width: 100%;
    min-height: 48px;
    padding: 10px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e6e6e6;
}

.petpay-wp-login__footer p {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.2;
    color: #1e293b;
    text-align: center;
}

.petpay-wp-login__sr-only {
    width: 1px;
    height: 1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 767px) {
    .petpay-wp-login::before {
        background-size: 110% auto;
    }

    .petpay-wp-login__header {
        min-height: 58px;
        padding: 10px 20px;
    }

    .petpay-wp-login__logo {
        width: 90px;
        max-width: 90px;
        min-width: 90px;
    }

    .petpay-wp-login__center {
        padding: 25px 18px;
    }

    .petpay-wp-login__title {
        font-size: 25px;
    }

    .petpay-wp-login__footer {
        padding: 10px 20px;
    }

    .petpay-wp-login__footer p {
        font-size: 10px;
    }

    .petpay-wp-login__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

.petpay-wp-login__box {
    gap: 0;
}

.petpay-wp-login__title {
    margin-bottom: 22px;
    font-size: 32px;
    line-height: 1.18;
}

.petpay-wp-login__form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.petpay-wp-login__password-field {
    margin-top: 12px;
}

.petpay-wp-login__remember {
    margin-top: 12px;
    margin-bottom: 2px;
}

.petpay-wp-login__submit {
    margin-top: 13px;
}

.petpay-wp-login__divider {
    margin: 18px 0 14px;
    background: rgba(255, 255, 255, 0.48);
}

.petpay-wp-login__google {
    min-height: 44px;
    gap: 10px;
    background: #ffffff;
    color: #1e293b;
    border: 1px solid rgba(30, 41, 59, 0.10);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 13px;
    font-weight: 500;
}

.petpay-wp-login__google:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.petpay-wp-login__google-icon {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
}

.petpay-wp-login__bottom-links {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
}

.petpay-wp-login__bottom-links a {
    font-size: 11px;
    line-height: 1.3;
    color: #ffffff;
    text-decoration: underline;
}

.petpay-wp-login__dot {
    color: rgba(255, 255, 255, 0.75);
    font-size: 11px;
}

.petpay-wp-login__register-google-wrap {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.38);
    gap: 10px;
}

.petpay-wp-login__register-google-text {
    margin: 0;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
}

.petpay-wp-login__google--register {
    background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 767px) {
    .petpay-wp-login__title {
        font-size: 27px;
    }

    .petpay-wp-login__bottom-links {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
}
.petpay-wp-login::before{background-size:cover;background-position:center;opacity:.30}
.driver-pending-box{padding:24px;border-radius:18px;background:rgba(15,23,42,.78);box-shadow:0 24px 70px rgba(0,0,0,.24)}
.driver-pending-icon{font-size:42px;text-align:center;margin-bottom:12px}
.driver-pending-text{margin:0 0 14px;color:#fff;font:400 13px/1.55 "Poppins",sans-serif}
.driver-pending-summary{display:grid;gap:8px;margin-bottom:10px}
.driver-pending-summary span{display:grid;gap:2px;padding:10px;border-radius:9px;background:rgba(255,255,255,.10);color:#fff}
.driver-pending-summary small{font-size:9px;opacity:.72}.driver-pending-summary strong{font-size:11px}
