/*|--------------------------------------------------------------------------| CONTENEDOR|--------------------------------------------------------------------------*/
.sys-recurring {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
}

.sys-card {
    background: #fff;
    border: 3px solid #ff0000;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

.sys-card h2 {
    margin: 0;
    color: #ff0000;
    text-align: center;
    font-size: 32px;
}

.sys-card p {
    margin: 15px 0 30px;
    color: #555;
    text-align: center;
}

/*|--------------------------------------------------------------------------| INPUTS|--------------------------------------------------------------------------*/
.sys-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.sys-row label {
    font-weight: bold;
}

.sys-row input {
    width: 100%;
    border: 1px solid #d9d9d9;
    padding: 15px;
    transition: .25s;
    font-size: 16px;
}

.sys-row input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, .12);
}

/*|--------------------------------------------------------------------------| BOTÓN|--------------------------------------------------------------------------*/
#sys-verify-operation {
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: .25s;
    color: #fff;
    background: #ff0000;
    letter-spacing: 1px;
    font-size: 15px;
}

#sys-verify-operation:hover {
    background: #d70000;
}

/*|--------------------------------------------------------------------------| LOADING|--------------------------------------------------------------------------*/
.sys-loading {
    text-align: center;
    padding: 30px;
    color: #ff0000;
    font-weight: bold;
}

/*|--------------------------------------------------------------------------| ALERTAS|--------------------------------------------------------------------------*/
.sys-alert {
    margin-top: 25px;
    padding: 15px;
}

.sys-alert.success {
    background: #ecfdf3;
    border: 1px solid #22c55e;
    color: #166534;
}

.sys-alert.warning {
    margin: 0px;
    background: #fff2dd;
    border: 1px solid #cb8b2b;
    color: #cb8b2b;
}

.sys-alert.error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/*|--------------------------------------------------------------------------| DATOS RECUPERADOS|--------------------------------------------------------------------------*/
.sys-payment-data {
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.sys-payment-data h3 {
    color: #ff0000;
    margin-bottom: 25px;
}

.sys-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.sys-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sys-field label {
    font-weight: bold;
}

.sys-field input {
    padding: 14px;
    border: 1px solid #d8d8d8;
}

.sys-field input[readonly] {
    background: #f7f7f7;
}

/*|--------------------------------------------------------------------------| PLAN|--------------------------------------------------------------------------*/
.sys-plan {
    margin-top: 25px;
    padding: 20px;
    background: #fff5f5;
    border-left: 5px solid #ff0000;
    font-size: 17px;
}

/*|--------------------------------------------------------------------------| RESPONSIVE|--------------------------------------------------------------------------*/
@media(max-width:768px) {
    .sys-card {
        padding: 25px;
    }

    .sys-grid {
        grid-template-columns: 1fr;
    }
}

/*|--------------------------------------------------------------------------
| FORMULARIO DE ACTIVACIÓN
|--------------------------------------------------------------------------
*/

#sys-activation-form {
    margin-top: 40px;
    border-top: 1px solid #ececec;
    padding-top: 35px;
}

#sys-plan-title {
    margin: 0 0 25px;
    padding: 18px;
    background: #fff5f5;
    border-left: 5px solid #ff0000;
    color: #ff0000;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}

#sys-create-membership {
    width: 100%;
    margin-top: 15px;
    padding: 16px;
    border: none;
    cursor: pointer;
    background: #ff0000;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    transition: .25s;
}

#sys-create-membership:hover:not(:disabled) {
    background: #d70000;
}

#sys-create-membership:disabled {
    background: #cfcfcf;
    cursor: not-allowed;
}

.sys-feedback {
    font-size: 13px;
    font-weight: 600;
}

.sys-feedback.success {
    color: #15803d;
}

.sys-feedback.error {
    color: #dc2626;
}

#sys-activation-form small {
    color: #7a7a7a;
    font-size: 13px;
}

#sys-activation-form input {
    transition: .25s;
}

#sys-activation-form input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, .12);
}

.sys-plan-card {

    margin-bottom: 30px;

    padding: 20px;

    border: 2px solid #ff0000;

    background: #fff8f8;

    border-radius: 8px;

}

.sys-plan-card h3 {

    margin: 0 0 10px;

    color: #ff0000;

    font-size: 26px;

}

.sys-plan-card p {

    margin: 0;

    color: #666;

    font-size: 15px;

}

.sys-success {

    text-align: center;

    padding: 30px;

}

.sys-success-icon {

    width: 90px;

    height: 90px;

    margin: auto;

    border-radius: 50%;

    background: #22c55e;

    color: #fff;

    font-size: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

}

.sys-success h2 {

    color: #15803d;

    margin-bottom: 20px;

}

.sys-success-info {

    margin-top: 30px;

    padding: 25px;

    background: #f8fafc;

    border-left: 5px solid #22c55e;

    text-align: left;

    line-height: 1.7;

}

.sys-birthday-row {
    margin-bottom: 25px;
}

.sys-birthday-fields {
    display: grid;
    grid-template-columns: 1fr 2fr 1.3fr;
    gap: 10px;
    width: 100%;
}

.sys-date-field {
    position: relative;
}

.sys-date-field select {
    width: 100%;
    min-height: 52px;
    padding: 12px 40px 12px 14px;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    appearance: auto;
    transition: .25s;
}

.sys-date-field select:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, .12);
}

.sys-date-field select:not([value=""]) {
    color: #222;
}

.sys-birthday-row small {
    display: block;
    margin-top: 8px;
    color: #7a7a7a;
    font-size: 13px;
}

#sys-birthday-feedback {
    margin-top: 7px;
}

@media(max-width:768px) {
    .sys-birthday-fields {
        grid-template-columns: 1fr 1.8fr 1.3fr;
        gap: 7px;
    }

    .sys-date-field select {
        min-height: 50px;
        padding: 12px 8px;
        font-size: 15px;
    }
}

@media(max-width:420px) {
    .sys-birthday-fields {
        grid-template-columns: 1fr 1.5fr 1.2fr;
    }

    .sys-date-field select {
        font-size: 14px;
        padding-left: 7px;
        padding-right: 4px;
    }
}