        .content-color-bg {
            background: linear-gradient(160deg, #33f7b5, #007A5E, #29d9a1, #005d49, #33f7b5);
            background-size: 400% 400%;
            animation: lavaGreen 30s ease infinite;
        }

        /* Movimiento suave del fondo */
        @keyframes lavaGreen {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }


        html,
        body {
            overflow: hidden;
        }

        body {
            display: block;

        }

        .loading-logo {
            width: 300px;
            height: auto;
            animation: pulse 5.5s infinite alternate;
            margin-top: 30px;
        }

        @keyframes pulse {
            from {
                transform: scale(1);
            }

            to {
                transform: scale(1.05);
            }
        }

        .success-message {
            color: white;
            text-align: center;
            display: none;
            font-size: 40px;
            font-weight: bold;
        }

        .error-message {
            color: #e74c3c;
            text-align: center;
            margin-top: 40px;
            display: none;
        }


        .font-desc-login {
            font-size: 20px;
            color: #ffffff;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .form-container {
            background-color: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 1px 17px 29px 0px rgba(0, 0, 0, 0.35);
            -webkit-box-shadow: 1px 17px 29px 0px rgba(0, 0, 0, 0.35);
            -moz-box-shadow: 1px 17px 29px 0px rgba(0, 0, 0, 0.35);
            max-width: 100%;
            width: 100%;
            margin: 0 auto;
        }

        .input-form {
            border-bottom: 3px solid rgb(189, 187, 187) !important;
            background-color: transparent !important;
            border-radius: 0;
            border: none;
            width: 100%;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .input-form:focus {
            border-bottom: 3px solid #33f7b5 !important;
        }

        .input-form-2 {
            border-bottom: 3px solid rgb(189, 187, 187) !important;
            background-color: transparent !important;
            border-radius: 0;
            border: none;
            width: 100%;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .input-form-2:focus {
            border-bottom: 3px solid #33f7b5 !important;
        }

        .label-form {
            color: rgb(189, 187, 187);
            font-size: 20px;
            font-weight: 500;
        }


        .input-bg {
            background-color: white;
            border-radius: 24px;
            padding: 40px;
            width: 500px;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
            -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
            -moz-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.25);
        }

        .btn-confirm {
            background-color: transparent;
            border: 3px solid white;
            border-radius: 24px;
            padding-left: 50px;
            padding-right: 50px;
            transition: background-color 0.3s ease, color 0.3s ease;
            color: white;
        }

        .btn-confirm:hover {
            background-color: #33f7b5;
        }

        .arrow-colors {
            color: white !important;
        }

        .form-container {
            position: relative;
        }

        .bottom-pais {
            position: absolute;
            bottom: 10px;
            /* puedes ajustar este valor */
            left: 0;
            width: 100%;
            text-align: center;
            opacity: 0.4;
            /* medio transparente */
            font-size: 14px;
            /* opcional, para tamaño de texto */
        }

        .bottom-colors {
            font-size: clamp(24px, 8vw, 70px);
            color: #ffffff;
        }

        .form-size {
            height: 700px !important;
        }

        @media (max-width: 767px) {
            .loading-logo {
                width: 150px;
                margin-top: 20px;
            }

            .font-desc-login {
                font-size: 16px;
            }

            .form-container {
                padding: 1.5rem;
            }

            .form-size {
                height: 650px !important;
            }


            .success-message {
                color: white;
                text-align: center;
                display: none;
                font-size: 25px;
                font-weight: bold;
            }

            .error-message {
                color: #e74c3c;
                text-align: center;
                margin-top: 25px;
                display: none;
            }
        }