body {
    background: linear-gradient(to right, #100e25, #584dccff); /* Gradiente de fondo */
    color: white; /* Color del texto */
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 60px;
}

.form-signin {
    width: 100%;
    max-width: 400px;
    padding: 15px;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.custom-list {
    list-style: none;
    counter-reset: list-counter;
    padding-left: 0;
}

.custom-list li {
    counter-increment: list-counter;
    position: relative;
    padding-left: 80px;
    margin-bottom: 20px;
}

.custom-list li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #584dccff;
    color: white;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
}

.btn-custom {
    margin-top: 20px;
    font-weight: bold;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
}


.overlay-image {
    position: absolute;
    top: 180px;
    left: 850px;
    z-index: -1;
}



.btn-whatsapp {
    background-color: #1eb11e;
    color: white;
    border-radius: 30px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 20px; /* Hace el texto y el ícono más grandes */
    display: inline-flex; /* Para centrar verticalmente el ícono y el texto */
    align-items: center; /* Centra verticalmente el ícono y el texto */
}
.btn-whatsapp:hover {
    background-color: #25d525;
}



@media (max-width: 768px) {
    .text-mobile-spacing {
        margin-bottom: 40px;
    }

    .logo {
        margin-bottom: 40px;
    }

    .custom-list li:not(:last-child)::after {
        width: 0px;
    }

    .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .overlay-image {
        opacity: 50%;
    }
}