.form-control:focus {
    box-shadow: none;
    border-color: #BA68C8
}

.back:hover {
    color: #682773;
    cursor: pointer
}

.labels {
    font-size: 20px;
    font-family: RMNeue;
    text-transform: uppercase;
}

.profile-input {
    font-size: 22px;
    font-family: RMNeue;
}

.form-control:focus {
    font-family: RMNeue;
}

/* Estilos para botones de Wallet */
.btn-wallet {
    padding: 0.5rem;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 3rem;
    margin: 0.5rem 0;
    text-transform: uppercase;
    font-family: RMNeueBlack;
}

.btn-google-wallet {
    background-color: #4285F4;
    color: white;
}

.btn-google-wallet:hover {
    background-color: #357AE8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

.btn-apple-wallet {
    background-color: #000000;
    color: white;
}

.btn-apple-wallet:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-wallet i {
    font-size: 18px;
}

/* Wallet promo modal */
.wallet-promo-modal {
    background-color: #111;
    border-radius: 0 !important;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}
.wallet-promo-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #E73B2B;
}
.wallet-promo-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
    transition: color 0.2s;
}
.wallet-promo-close:hover {
    color: white;
}
.wallet-promo-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.wallet-promo-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #E73B2B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.wallet-promo-icon i {
    font-size: 2rem;
    color: white;
}
.wallet-promo-title {
    font-family: RMNeueBlack;
    color: white;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}
.wallet-promo-desc {
    font-family: RMNeue;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 340px;
    margin-bottom: 1.8rem;
}
.wallet-promo-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
    max-width: 360px;
    margin-bottom: 1.5rem;
}
.wallet-promo-buttons .btn-wallet {
    flex: 1;
    margin: 0;
    font-size: 0.8rem;
    height: 2.8rem;
}
@media (max-width: 600px) {
    .wallet-promo-modal {
        padding: 2rem 1.2rem 1.5rem;
    }
    .wallet-promo-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .wallet-promo-title {
        font-size: 1.3rem;
    }
}

