/* ==========================================================
   MARKETPLACE - LOGIN
   ========================================================== */

.marketplace-login-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 50px 0;
}


/* ==========================================================
   CONTENEDOR
   ========================================================== */

.marketplace-login-card {
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}


/* ==========================================================
   CABECERA
   ========================================================== */

.marketplace-login-header {
    text-align: center;
    padding: 38px 35px 25px;
}

.marketplace-login-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #f0f4ff;
    color: #4e73df;

    font-size: 28px;
}

.marketplace-login-title {
    margin: 0 0 8px;

    font-size: 27px;
    font-weight: 700;

    color: #20242d;
}

.marketplace-login-subtitle {
    margin: 0;

    color: #858796;
    font-size: 14px;
    line-height: 1.6;
}


/* ==========================================================
   CUERPO
   ========================================================== */

.marketplace-login-body {
    padding: 10px 35px 35px;
}


/* ==========================================================
   LABELS
   ========================================================== */

.marketplace-login-body .form-group {
    margin-bottom: 20px;
}

.marketplace-login-body label {
    margin-bottom: 7px;

    font-size: 14px;
    font-weight: 600;

    color: #343a40;
}


/* ==========================================================
   INPUTS
   ========================================================== */

.marketplace-login-body .form-control {
    height: 46px;

    border: 1px solid #dfe2e8;
    border-radius: 9px;

    padding: 10px 13px;

    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.marketplace-login-body .form-control:focus {
    border-color: #4e73df;

    box-shadow:
        0 0 0 3px rgba(78, 115, 223, 0.12);

    outline: none;
}


/* ==========================================================
   CHECKBOX
   ========================================================== */

.marketplace-login-body .custom-control-label {
    font-weight: 400;
    color: #6c757d;
}

.marketplace-login-body .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #4e73df;
    border-color: #4e73df;
}


/* ==========================================================
   BOTÓN LOGIN
   ========================================================== */

.marketplace-login-button {
    width: 100%;

    height: 46px;

    border: none;
    border-radius: 9px;

    background: #4e73df;
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.marketplace-login-button:hover {
    background: #3f5fc4;

    transform: translateY(-1px);

    box-shadow:
        0 6px 16px rgba(78, 115, 223, 0.25);
}

.marketplace-login-button:active {
    transform: translateY(0);
}


/* ==========================================================
   ENLACES
   ========================================================== */

.marketplace-login-link {
    color: #4e73df;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.2s ease;
}

.marketplace-login-link:hover {
    color: #2e59d9;
    text-decoration: none;
}


/* ==========================================================
   SEPARADOR
   ========================================================== */

.marketplace-login-divider {
    height: 1px;

    margin: 25px 0;

    background: #eeeeee;
}


/* ==========================================================
   REGISTRO
   ========================================================== */

.marketplace-login-register {
    text-align: center;

    color: #858796;
    font-size: 14px;
}

.marketplace-login-register a {
    margin-left: 4px;
}


/* ==========================================================
   VALIDACIONES
   ========================================================== */

.marketplace-login-body .validation-summary-errors {
    margin-bottom: 20px;
}

.marketplace-login-body .validation-summary-errors ul {
    margin-bottom: 0;
    padding-left: 18px;
}

.marketplace-login-body .field-validation-error {
    display: block;
    margin-top: 5px;

    font-size: 12px;
}


/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 575.98px) {

    .marketplace-login-page {
        min-height: auto;
        padding: 30px 15px;
    }

    .marketplace-login-header {
        padding: 30px 22px 20px;
    }

    .marketplace-login-body {
        padding: 5px 22px 28px;
    }

    .marketplace-login-title {
        font-size: 23px;
    }

}